Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Aug 2010 21:28:34 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r211778 - head/lib/libc
Message-ID:  <201008242128.o7OLSYQZ088618@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Tue Aug 24 21:28:34 2010
New Revision: 211778
URL: http://svn.freebsd.org/changeset/base/211778

Log:
  Fix an accidental sed...

Modified:
  head/lib/libc/Makefile

Modified: head/lib/libc/Makefile
==============================================================================
--- head/lib/libc/Makefile	Tue Aug 24 21:27:02 2010	(r211777)
+++ head/lib/libc/Makefile	Tue Aug 24 21:28:34 2010	(r211778)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008242128.o7OLSYQZ088618>