From 2a48fed0b32ceb1567f3b7e33835bacfdf3e0971 Mon Sep 17 00:00:00 2001 From: des Date: Mon, 9 Sep 2013 17:38:02 +0000 Subject: The correct variable is apparently MACHINE_ARCH, not TARGET_ARCH. Approved by: re (blanket) --- etc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/Makefile b/etc/Makefile index b6e1e37..ae52d79 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 -- cgit v1.1