Module Name: src
Committed By: skrll
Date: Mon Nov 9 15:58:10 UTC 2009
Modified Files:
src/share/mk: bsd.sys.mk
Log Message:
IA64 doesn't have SSP.
To generate a diff of this commit:
cvs rdiff -u -r1.180 -r1.181 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.180 src/share/mk/bsd.sys.mk:1.181
--- src/share/mk/bsd.sys.mk:1.180 Thu Feb 12 22:49:05 2009
+++ src/share/mk/bsd.sys.mk Mon Nov 9 15:58:09 2009
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.sys.mk,v 1.180 2009/02/12 22:49:05 lukem Exp $
+# $NetBSD: bsd.sys.mk,v 1.181 2009/11/09 15:58:09 skrll Exp $
#
# Build definitions used for NetBSD source tree builds.
@@ -50,8 +50,10 @@
CFLAGS+= ${CWARNFLAGS} ${NOGCCERROR:D:U-Werror}
LINTFLAGS+= ${DESTDIR:D-d ${DESTDIR}/usr/include}
-.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "hppa") || \
- (${MACHINE_ARCH} == "mipsel") || (${MACHINE_ARCH} == "mipseb")
+.if (${MACHINE_ARCH} == "alpha") || \
+ (${MACHINE_ARCH} == "hppa") || \
+ (${MACHINE_ARCH} == "ia64") || \
+ (${MACHINE_ARCH} == "mipsel") || (${MACHINE_ARCH} == "mipseb")
HAS_SSP= no
.else
HAS_SSP= yes