summaryrefslogtreecommitdiff
path: root/sh/Makefile
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-11-19 16:42:28 +0000
committerRoy Marples <roy@marples.name>2007-11-19 16:42:28 +0000
commit88ccccc22a3f8938bcd43ffbe86d3b9c3c814ad3 (patch)
treee4637b861c8a4f65713d6825b8c6749bdfa0fa66 /sh/Makefile
parent81715c31594ac2f02b1d73dc9df0a7e9a19ca9a7 (diff)
downloadopenrc-88ccccc22a3f8938bcd43ffbe86d3b9c3c814ad3.tar.gz
openrc-88ccccc22a3f8938bcd43ffbe86d3b9c3c814ad3.tar.bz2
openrc-88ccccc22a3f8938bcd43ffbe86d3b9c3c814ad3.tar.xz
Move runlevel and lib logic to the sub Makefiles
Diffstat (limited to 'sh/Makefile')
-rw-r--r--sh/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/sh/Makefile b/sh/Makefile
index 0be6c65..af610ca 100644
--- a/sh/Makefile
+++ b/sh/Makefile
@@ -5,3 +5,12 @@ BIN = gendepends.sh net.sh rc-mount.sh rc-help.sh runscript.sh
TOPDIR = ..
include $(TOPDIR)/default.mk
+
+install::
+ # Handle lib correctly
+ if test $(LIB) != "lib" ; then \
+ sed -i'.bak' -e 's,/lib/,/$(LIB)/,g' $(DESTDIR)/$(RC_LIB)/sh/functions.sh || exit $$? ; \
+ rm -f $(DESTDIR)/$(RC_LIB)/sh/functions.sh.bak ; \
+ sed -i'.bak' -e 's,/lib/,/$(LIB)/,g' $(DESTDIR)/$(RC_LIB)/sh/rc-functions.sh || exit $$? ; \
+ rm -f $(DESTDIR)/$(RC_LIB)/sh/rc-functions.sh.bak ; \
+ fi