2007-11-23 17:34:11 +05:30
|
|
|
DIR = $(RC_LIB)/sh
|
2007-12-14 19:49:03 +05:30
|
|
|
INC = functions.sh init-common-post.sh rc-functions.sh rc-mount.sh
|
2007-12-20 23:09:13 +05:30
|
|
|
BIN = gendepends.sh net.sh runscript.sh
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
TOPDIR = ..
|
|
|
|
include $(TOPDIR)/default.mk
|
2007-11-19 22:12:28 +05:30
|
|
|
|
|
|
|
install::
|
2008-01-03 20:19:34 +05:30
|
|
|
@# Handle lib correctly
|
2007-11-28 21:15:03 +05:30
|
|
|
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; \
|
2007-11-19 22:12:28 +05:30
|
|
|
fi
|
2008-01-03 20:19:34 +05:30
|
|
|
@# Provide an init script for the loopback interface
|
|
|
|
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 $$?
|