From bff351d7fe78791d0182da7343cf33a53db688e8 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Tue, 24 Aug 2010 21:28:34 +0000 Subject: [PATCH] Fix an accidental sed... --- lib/libc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc/Makefile b/lib/libc/Makefile index a6071600ecaf..e29c7d99b7ca 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