summaryrefslogtreecommitdiff
path: root/sh/Makefile
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-01-03 15:48:33 +0000
committerRoy Marples <roy@marples.name>2008-01-03 15:48:33 +0000
commitcc96c0933d3fc82e6a7f687bf18705bae62e550a (patch)
tree92736f790933f8382bd8a49964cf30a71973db29 /sh/Makefile
parent0176ee89ed256559616fd215f0eda849fbb8f0bd (diff)
downloadopenrc-cc96c0933d3fc82e6a7f687bf18705bae62e550a.tar.gz
openrc-cc96c0933d3fc82e6a7f687bf18705bae62e550a.tar.bz2
openrc-cc96c0933d3fc82e6a7f687bf18705bae62e550a.tar.xz
Juggle the Makefiles so that sh knows about NET_LO
Diffstat (limited to 'sh/Makefile')
-rw-r--r--sh/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/sh/Makefile b/sh/Makefile
index c682eeb..bc8ddae 100644
--- a/sh/Makefile
+++ b/sh/Makefile
@@ -5,6 +5,9 @@ BIN = gendepends.sh net.sh runscript.sh
TOPDIR = ..
include $(TOPDIR)/default.mk
+# To get NET_LO
+include Makefile.$(OS)
+
install::
@# Handle lib correctly
if test $(LIB) != "lib"; then \
@@ -14,7 +17,7 @@ install::
rm -f $(DESTDIR)/$(RC_LIB)/sh/rc-functions.sh.bak; \
fi
@# Provide an init script for the loopback interface
- ln -snf /$(RC_LIB)/sh/net.sh $(DESTDIR)/etc/init.d/$(NET_LO) || exit $$?
+ ln -snf $(RC_LIB)/sh/net.sh $(DESTDIR)/etc/init.d/$(NET_LO) || exit $$?
@# Put functions.sh into the init.d dir so 3rd part apps don't have to
@# be multilib aware
- ln -snf /$(RC_LIB)/sh/functions.sh $(DESTDIR)/etc/init.d || exit $$?
+ ln -snf $(RC_LIB)/sh/functions.sh $(DESTDIR)/etc/init.d || exit $$?