Module Name: src
Committed By: tron
Date: Thu Nov 12 08:51:50 UTC 2009
Modified Files:
src/share/mk: bsd.sys.mk
Log Message:
Fix broken conditional to get manual builds (not using "build.sh")
working again.
To generate a diff of this commit:
cvs rdiff -u -r1.182 -r1.183 src/share/mk/bsd.sys.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/mk/bsd.sys.mk
diff -u src/share/mk/bsd.sys.mk:1.182 src/share/mk/bsd.sys.mk:1.183
--- src/share/mk/bsd.sys.mk:1.182 Wed Nov 11 16:35:45 2009
+++ src/share/mk/bsd.sys.mk Thu Nov 12 08:51:50 2009
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.sys.mk,v 1.182 2009/11/11 16:35:45 tron Exp $
+# $NetBSD: bsd.sys.mk,v 1.183 2009/11/12 08:51:50 tron Exp $
#
# Build definitions used for NetBSD source tree builds.
@@ -59,8 +59,8 @@
HAS_SSP= yes
.endif
-.if ((${MACHINE_ARCH} == "amd64") || (${MACHINE_ARCH} == "i386") && \
- (_SRC_TOP_ != ""))
+.if ((${MACHINE_ARCH} == "amd64") || (${MACHINE_ARCH} == "i386")) && \
+ defined(_SRC_TOP_) && (${_SRC_TOP_} != "")
USE_SSP?= yes
.endif