summaryrefslogtreecommitdiffstats
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2002-08-08 15:43:23 +0000
committerru <ru@FreeBSD.org>2002-08-08 15:43:23 +0000
commitc7c1aa8abb808ace8ae12ace7f3d896121fa6f61 (patch)
treeb12b2b4383a573dc29b1c461bdd09a4fa4969b3c /Makefile.inc1
parent6d152dd0cc4924fd5695dafc24a1e8b9711db862 (diff)
downloadFreeBSD-src-c7c1aa8abb808ace8ae12ace7f3d896121fa6f61.zip
FreeBSD-src-c7c1aa8abb808ace8ae12ace7f3d896121fa6f61.tar.gz
The intent in rev. 1.299 was to make the CPUTYPE assignment type check
bother "only those who attempts to set it to a different value". This got broken in rev. 1.300 (that fixed another race). Reported by: ache
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc19
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 0ffd05c..afa3d1a 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -131,9 +131,14 @@ TARGET_CPUTYPE?=${CPUTYPE}
TARGET?= ${TARGET_ARCH}
TARGET_CPUTYPE?=
.endif
+.if !empty(TARGET_CPUTYPE)
+_TARGET_CPUTYPE=${TARGET_CPUTYPE}
+.else
+_TARGET_CPUTYPE=dummy
+.endif
_CPUTYPE!= ${MAKE} -f /dev/null -m ${.CURDIR}/share/mk \
- CPUTYPE=X${TARGET_CPUTYPE} -V CPUTYPE
-.if ${_CPUTYPE} != X${TARGET_CPUTYPE}
+ CPUTYPE=${_TARGET_CPUTYPE} -V CPUTYPE
+.if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
.error CPUTYPE global should be set with ?=.
.endif
.if make(buildworld)
OpenPOWER on IntegriCloud