1 Commits

Author SHA1 Message Date
Jay Larson
c3b800bc9c Added symlink for pidof -> killall5 which seems to work better than props-ng 2018-05-26 15:13:55 -05:00

View File

@@ -15,7 +15,7 @@ REPO = core
BRIEF = System that manages boot and shutdown BRIEF = System that manages boot and shutdown
DESC = System V style init programs original written by Miquel van Smoorenburg \ DESC = System V style init programs original written by Miquel van Smoorenburg \
that control the booting and shutdown of your system that control the booting and shutdown of your system
SNAPVER = 9 SNAPVER = 10
ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1)
TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n')
@@ -56,7 +56,9 @@ $(ROOT): $(SRCDIR)/src/init
@cd $(SRCDIR) && make -C src install ROOT=$(ROOT) && \ @cd $(SRCDIR) && make -C src install ROOT=$(ROOT) && \
install -v -d -m 755 $(ROOT)/usr/share/sysvinit && \ install -v -d -m 755 $(ROOT)/usr/share/sysvinit && \
install -v -m 644 $(SNAPDIR)/inittab $(ROOT)/usr/share/sysvinit install -v -d -m 755 $(ROOT)/bin && \
install -v -m 644 $(SNAPDIR)/inittab $(ROOT)/usr/share/sysvinit && \
ln -sv ../sbin/killall5 $(ROOT)/bin/pidof
clean: clean:
@rm -rvf $(ROOT) \ @rm -rvf $(ROOT) \