diff options
author | Roy Marples <roy@marples.name> | 2008-01-05 21:05:19 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-05 21:05:19 +0000 |
commit | ddb3ab47046dcedd88ffbf84a44a0a42438bc9e3 (patch) | |
tree | cf4dfd13206296ae698ba513e3797c7ec51e0180 /sh/Makefile | |
parent | 75815abd6ca9c6562c354eca7f314a1618678ad9 (diff) |
Use LIBNAME for multilib so as not to conflict with LIB
Diffstat (limited to 'sh/Makefile')
-rw-r--r-- | sh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sh/Makefile b/sh/Makefile index bc8ddae3..225d9f15 100644 --- a/sh/Makefile +++ b/sh/Makefile @@ -10,10 +10,10 @@ include Makefile.$(OS) install:: @# Handle lib correctly - if test $(LIB) != "lib"; then \ - sed -i'.bak' -e 's,/lib/,/$(LIB)/,g' $(DESTDIR)/$(RC_LIB)/sh/functions.sh || exit $$?; \ + if test $(LIBNAME) != "lib"; then \ + sed -i'.bak' -e 's,/lib/,/$(LIBNAME)/,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 $$?; \ + sed -i'.bak' -e 's,/lib/,/$(LIBNAME)/,g' $(DESTDIR)/$(RC_LIB)/sh/rc-functions.sh || exit $$?; \ rm -f $(DESTDIR)/$(RC_LIB)/sh/rc-functions.sh.bak; \ fi @# Provide an init script for the loopback interface |