Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/regress/lib/libc Handle undefined USE_SSP. XXX *_SSP variab...



details:   https://anonhg.NetBSD.org/src/rev/9f5d02a146e3
branches:  trunk
changeset: 749283:9f5d02a146e3
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Wed Nov 25 09:30:04 2009 +0000

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

diffstat:

 regress/lib/libc/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8b9c9b82226b -r 9f5d02a146e3 regress/lib/libc/Makefile
--- a/regress/lib/libc/Makefile Wed Nov 25 09:22:36 2009 +0000
+++ b/regress/lib/libc/Makefile Wed Nov 25 09:30:04 2009 +0000
@@ -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")



Home | Main Index | Thread Index | Old Index