diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2013-09-09 17:38:02 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2013-09-09 17:38:02 +0000 |
commit | d7510453f38b8f16eb426f321c6e638f5a770345 (patch) | |
tree | df400417e906fa378309ede3d0c51c734ad599f8 /etc/Makefile | |
parent | 22b256dfcbcc52b278934fb9065e6dca8c0653d8 (diff) | |
download | src-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/Makefile | 2 |
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 |