diff options
author | Roy Marples <roy@marples.name> | 2009-04-19 20:54:11 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-04-19 20:54:11 +0000 |
commit | 371506be4854d7470cc251c3d9b00d26545ce41a (patch) | |
tree | d7b6f0d097ed97899067dbf0c3506e4cc3dc23b8 | |
parent | 4febf00c06a027a96b00ae12e1bc077792738985 (diff) |
Default to not building the old net scripts.
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | init.d/Makefile | 1 |
3 files changed, 1 insertions, 3 deletions
@@ -9,7 +9,6 @@ PKG= ${NAME}-${VERSION} SUBDIR= conf.d etc init.d man sh src # Build our old net foo or not -MKOLDNET?= yes _OLDNET_SH= case "${MKOLDNET}" in \ [Yy][Ee][Ss]) echo "net doc";; \ *) echo "";; \ @@ -13,7 +13,7 @@ DESTDIR=/tmp/openrc-image MKPAM=pam MKTERMCAP=ncurses MKTERMCAP=termcap -MKOLDNET=no +MKOLDNET=yes PKG_PREFIX=/usr/pkg LOCAL_PREFIX=/usr/local PREFIX=/usr/local diff --git a/init.d/Makefile b/init.d/Makefile index 19f5946e..b816ae70 100644 --- a/init.d/Makefile +++ b/init.d/Makefile @@ -4,7 +4,6 @@ SRCS= bootmisc.in fsck.in hostname.in local.in localmount.in netmount.in \ BIN= ${OBJS} # Build our old net foo or not -MKOLDNET?= yes _OLDNET_SH= case "${MKOLDNET}" in \ [Yy][Ee][Ss]) echo "net.lo";; \ *) echo "";; \ |