aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNathan Whitehorn <nwhitehorn@FreeBSD.org>2010-07-10 14:40:57 +0000
committerNathan Whitehorn <nwhitehorn@FreeBSD.org>2010-07-10 14:40:57 +0000
commit3c766d1c8f05729686bac97814914384a021b5d0 (patch)
tree85c1616f59d3e6a585a2f4424267e1db9f5c9d58 /lib
parent8869de5e55120d55541e713b9900ce92449c58a3 (diff)
downloadsrc-3c766d1c8f05729686bac97814914384a021b5d0.tar.gz
src-3c766d1c8f05729686bac97814914384a021b5d0.zip
powerpc64 floating-point is identical to powerpc, so use the same
code on both architectures.
Notes
Notes: svn path=/head/; revision=209877
Diffstat (limited to 'lib')
-rw-r--r--lib/msun/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/msun/Makefile b/lib/msun/Makefile
index 4a1b73add29f..35077a38dbb7 100644
--- a/lib/msun/Makefile
+++ b/lib/msun/Makefile
@@ -14,6 +14,8 @@
.if ${MACHINE_ARCH} == "i386"
ARCH_SUBDIR= i387
+.elif ${MACHINE_ARCH} == "powerpc64"
+ARCH_SUBDIR= powerpc
.else
ARCH_SUBDIR= ${MACHINE_ARCH}
.endif