Corrected issue preventing installation of etc/inittab

This commit is contained in:
2017-06-02 12:06:30 -05:00
parent f187836707
commit 7ec9cd6634
2 changed files with 2 additions and 2 deletions

View File

@@ -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)