Source-Changes-HG archive

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

[src/trunk]: src/distrib/utils/sysinst If we are not building SMALLPROG, ther...



details:   https://anonhg.NetBSD.org/src/rev/2c3dac1b9279
branches:  trunk
changeset: 770762:2c3dac1b9279
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Nov 01 09:26:37 2011 +0000

description:
If we are not building SMALLPROG, there is no need to strip out INET6
support.

diffstat:

 distrib/utils/sysinst/Makefile.inc |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 54621426b249 -r 2c3dac1b9279 distrib/utils/sysinst/Makefile.inc
--- a/distrib/utils/sysinst/Makefile.inc        Tue Nov 01 02:04:43 2011 +0000
+++ b/distrib/utils/sysinst/Makefile.inc        Tue Nov 01 09:26:37 2011 +0000
@@ -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 @@
                -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
 



Home | Main Index | Thread Index | Old Index