aboutsummaryrefslogtreecommitdiff
path: root/etc/Makefile
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2013-09-09 17:38:02 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2013-09-09 17:38:02 +0000
commitd7510453f38b8f16eb426f321c6e638f5a770345 (patch)
treedf400417e906fa378309ede3d0c51c734ad599f8 /etc/Makefile
parent22b256dfcbcc52b278934fb9065e6dca8c0653d8 (diff)
downloadsrc-d7510453f38b8f16eb426f321c6e638f5a770345.tar.gz
src-d7510453f38b8f16eb426f321c6e638f5a770345.zip
The correct variable is apparently MACHINE_ARCH, not TARGET_ARCH.
Approved by: re (blanket)
Notes
Notes: svn path=/head/; revision=255425
Diffstat (limited to 'etc/Makefile')
-rw-r--r--etc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile
index b6e1e37908d1..ae52d791324d 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -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