fix the upstream default network stack

The OpenRC upstream default network stack was changed, but there was no
reason to change it. Now since we have the MKNET build switch, it is
easy for the gentoo ebuild to install oldnet by default.

The upstream default is newnet.
This commit is contained in:
William Hubbs
2012-07-10 12:18:06 -05:00
parent 60d6847de5
commit 006fbdce83
5 changed files with 16 additions and 16 deletions

View File

@@ -6,12 +6,12 @@ BIN= ${OBJS}
# Build our old net foo or not
ifeq (${MKNET},)
INSTALLAFTER= _installafter_net.lo
SRCS+= net.lo.in
SRCS+= network.in staticroute.in
endif
ifeq (${MKNET},newnet)
SRCS+= network.in staticroute.in
ifeq (${MKNET},oldnet)
INSTALLAFTER= _installafter_net.lo
SRCS+= net.lo.in
endif
MK= ../mk