diff options
author | imp <imp@FreeBSD.org> | 2010-08-24 21:28:34 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-08-24 21:28:34 +0000 |
commit | 5eaa300cb1e05fbd2a54c95013c31c9b93298faf (patch) | |
tree | 7e3208938e1219c8161e9a09a546b469a9b6225a /lib | |
parent | a34c7e01875a6937a85f5aeab3c3c4a9abad4989 (diff) | |
download | FreeBSD-src-5eaa300cb1e05fbd2a54c95013c31c9b93298faf.zip FreeBSD-src-5eaa300cb1e05fbd2a54c95013c31c9b93298faf.tar.gz |
Fix an accidental sed...
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index a607160..e29c7d9 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -8,10 +8,10 @@ SHLIBDIR?= /lib # We have to special case powerpc and powerpc64, since they mostly have # the same source implementation. libc is very different due to large # ABI differences. -.if ${LIBC_ARCH} == "powerpc" +.if ${MACHINE_ARCH} == "powerpc" LIBC_ARCH=${MACHINE_ARCH} .else -LIBC_ARCH=${LIBC_ARCH} +LIBC_ARCH=${MACHINE_CPUARCH} .endif # All library objects contain FreeBSD revision strings by default; they may be |