Module Name: src
Committed By: hannken
Date: Tue Dec 14 17:07:08 UTC 2010
Modified Files:
src/distrib/utils/x_ifconfig: Makefile
Log Message:
Make the definition of CRUNCHOPS independent of SMALLPROG_INET6 / USE_INET6.
Distrib/sparc64/instfs now builds again.
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/distrib/utils/x_ifconfig/Makefile
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/x_ifconfig/Makefile
diff -u src/distrib/utils/x_ifconfig/Makefile:1.31 src/distrib/utils/x_ifconfig/Makefile:1.32
--- src/distrib/utils/x_ifconfig/Makefile:1.31 Mon Dec 13 21:47:32 2010
+++ src/distrib/utils/x_ifconfig/Makefile Tue Dec 14 17:07:08 2010
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.31 2010/12/13 21:47:32 pooka Exp $
+# $NetBSD: Makefile,v 1.32 2010/12/14 17:07:08 hannken Exp $
# Build a smaller ifconfig (i.e. for boot media)
.include <bsd.own.mk>
@@ -8,8 +8,9 @@
SRCDIR= ${.CURDIR}/../../../sbin/ifconfig
+CPPFLAGS+= -DCRUNCHOPS
.if defined(SMALLPROG_INET6) && (${USE_INET6} != "no")
-CPPFLAGS+= -DINET6 -DCRUNCHOPS
+CPPFLAGS+= -DINET6
SRCS+= af_inet6.c
.endif