diff options
Diffstat (limited to 'sh')
-rw-r--r-- | sh/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sh/Makefile b/sh/Makefile index 0be6c650..af610ca7 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 |