From 7ec9cd66349cb80a66098b49ef02fbf0550e2382 Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Fri, 2 Jun 2017 12:06:30 -0500 Subject: [PATCH] Corrected issue preventing installation of etc/inittab --- Makefile | 2 +- SNAP/usher | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 642bb79..57dd455 100644 --- a/Makefile +++ b/Makefile @@ -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 = 6 +SNAPVER = 7 ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1) TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n') diff --git a/SNAP/usher b/SNAP/usher index ab9e34e..be90c28 100755 --- a/SNAP/usher +++ b/SNAP/usher @@ -11,7 +11,7 @@ case $1 in install -d -m 755 ${TARGET}/etc/rc{[0-6],S}.d if [ ! -f ${TARGET}/etc/inittab ]; then - install -m 644 /usr/share/sysvinit/inittab /etc/inittab + install -m 644 ${TARGET}/usr/share/sysvinit/inittab ${TARGET}/etc/inittab fi ;; prerm)