Module Name: src
Committed By: martin
Date: Tue Nov 1 09:26:37 UTC 2011
Modified Files:
src/distrib/utils/sysinst: Makefile.inc
Log Message:
If we are not building SMALLPROG, there is no need to strip out INET6
support.
To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/distrib/utils/sysinst/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/utils/sysinst/Makefile.inc
diff -u src/distrib/utils/sysinst/Makefile.inc:1.56 src/distrib/utils/sysinst/Makefile.inc:1.57
--- src/distrib/utils/sysinst/Makefile.inc:1.56 Thu Aug 25 17:39:58 2011
+++ src/distrib/utils/sysinst/Makefile.inc Tue Nov 1 09:26:37 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.56 2011/08/25 17:39:58 joerg Exp $
+# $NetBSD: Makefile.inc,v 1.57 2011/11/01 09:26:37 martin Exp $
#
# Makefile for sysinst
@@ -42,7 +42,7 @@ CPPFLAGS+= -I. -I${.CURDIR}/../.. -I${.C
-DREL=\"${DISTRIBVER}\" -DMACH=\"${MACHINE}\" \
-DMACH_${MACHINE} -DARCH_${MACHINE_ARCH}
-.if defined(SMALLPROG_INET6) && (${USE_INET6} != "no")
+.if (!defined(SMALLPROG) || defined(SMALLPROG_INET6)) && (${USE_INET6} != "no")
CPPFLAGS+=-DINET6
.endif