svn commit: r255425 - head/etc

Dag-Erling Smørgrav des at FreeBSD.org
Mon Sep 9 17:38:03 UTC 2013


Author: des
Date: Mon Sep  9 17:38:02 2013
New Revision: 255425
URL: http://svnweb.freebsd.org/changeset/base/255425

Log:
  The correct variable is apparently MACHINE_ARCH, not TARGET_ARCH.
  
  Approved by:	re (blanket)

Modified:
  head/etc/Makefile

Modified: head/etc/Makefile
==============================================================================
--- head/etc/Makefile	Mon Sep  9 16:51:35 2013	(r255424)
+++ head/etc/Makefile	Mon Sep  9 17:38:02 2013	(r255425)
@@ -50,7 +50,7 @@ BIN1=	crontab \
 	syslog.conf \
 	termcap.small
 
-.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
+.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "powerpc64"
 BIN1+=	libmap32.conf
 .endif
 


More information about the svn-src-all mailing list