summaryrefslogtreecommitdiff
path: root/sh/Makefile
blob: 225d9f1536966c2fa1580d968a81ffcad8e4ac00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DIR = $(RC_LIB)/sh
INC = functions.sh init-common-post.sh rc-functions.sh rc-mount.sh
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 $(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/,/$(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
	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 $$?