svn commit: r212518 - head/lib/msun

Warner Losh imp at FreeBSD.org
Mon Sep 13 01:44:56 UTC 2010


Author: imp
Date: Mon Sep 13 01:44:56 2010
New Revision: 212518
URL: http://svn.freebsd.org/changeset/base/212518

Log:
  MFtbemd: Move to using MACHINE_CPUARCH, now that it is safe.

Modified:
  head/lib/msun/Makefile

Modified: head/lib/msun/Makefile
==============================================================================
--- head/lib/msun/Makefile	Mon Sep 13 01:44:07 2010	(r212517)
+++ head/lib/msun/Makefile	Mon Sep 13 01:44:56 2010	(r212518)
@@ -12,12 +12,12 @@
 #
 #
 
-.if ${MACHINE_ARCH} == "i386"
+.if ${MACHINE_CPUARCH} == "i386"
 ARCH_SUBDIR= i387
 .elif ${MACHINE_ARCH} == "powerpc64"
 ARCH_SUBDIR= powerpc
 .else
-ARCH_SUBDIR= ${MACHINE_ARCH}
+ARCH_SUBDIR= ${MACHINE_CPUARCH}
 .endif
 
 .include "${ARCH_SUBDIR}/Makefile.inc"


More information about the svn-src-head mailing list