svn commit: r263633 - stable/9/etc
Takahashi Yoshihiro
nyan at FreeBSD.org
Sat Mar 22 13:58:06 UTC 2014
Author: nyan
Date: Sat Mar 22 13:58:06 2014
New Revision: 263633
URL: http://svnweb.freebsd.org/changeset/base/263633
Log:
MFC: r255425
The correct variable is apparently MACHINE_ARCH, not TARGET_ARCH.
Modified:
stable/9/etc/Makefile
Directory Properties:
stable/9/etc/ (props changed)
Modified: stable/9/etc/Makefile
==============================================================================
--- stable/9/etc/Makefile Sat Mar 22 13:06:32 2014 (r263632)
+++ stable/9/etc/Makefile Sat Mar 22 13:58:06 2014 (r263633)
@@ -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-stable-9
mailing list