The following changes were made:

* Removed creation of /etc/inittab from usher
  * Added default inittab (installed with usher) in /usr/share/sysvinit
This commit is contained in:
2017-05-17 10:40:29 -05:00
parent 3fdf2a54e6
commit f187836707
3 changed files with 48 additions and 21 deletions

View File

@@ -14,7 +14,7 @@ URL = https://savannah.nongnu.org/projects/sysvinit
BRIEF = System that manages boot and shutdown
DESC = System V style init programs original written by Miquel van Smoorenburg \
that control the booting and shutdown of your system
SNAPVER = 4
SNAPVER = 6
ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1)
TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n')
@@ -53,7 +53,9 @@ $(ROOT): $(SRCDIR)/src/init
mkdir -v $(ROOT); \
fi
@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 -m 644 $(SNAPDIR)/inittab $(ROOT)/usr/share/sysvinit
clean:
@rm -rvf $(ROOT) \