Module Name:    src
Committed By:   uebayasi
Date:           Wed Nov 25 09:30:04 UTC 2009

Modified Files:
        src/regress/lib/libc: Makefile

Log Message:
Handle undefined USE_SSP.  XXX *_SSP variables needs clean-up.


To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 src/regress/lib/libc/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/regress/lib/libc/Makefile
diff -u src/regress/lib/libc/Makefile:1.57 src/regress/lib/libc/Makefile:1.58
--- src/regress/lib/libc/Makefile:1.57	Wed Nov 25 09:22:36 2009
+++ src/regress/lib/libc/Makefile	Wed Nov 25 09:30:04 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.57 2009/11/25 09:22:36 uebayasi Exp $
+#	$NetBSD: Makefile,v 1.58 2009/11/25 09:30:04 uebayasi Exp $
 
 SUBDIR+= _setjmp atexit basename citrus clone context convfp db dirname \
 	div divrem gen gdtoa getaddrinfo hsearch inet int_fmtio locale md5sha \
@@ -8,7 +8,7 @@
 .include <bsd.own.mk>
 .include <bsd.sys.mk>
 
-.if (${USE_SSP} == "yes")
+.if defined(USE_SSP) && (${USE_SSP} == "yes")
 SUBDIR+= ssp
 .endif
 .if (${MACHINE_ARCH} != "vax" && ${MACHINE_ARCH} != "m68000")

Reply via email to