Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Sep 2010 01:44:56 +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: r212518 - head/lib/msun
Message-ID:  <201009130144.o8D1iuDX045290@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



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