Corrected incorrect DESTDIR variables in usher (should be TARGET)
This commit is contained in:
@@ -28,13 +28,13 @@ case $1 in
|
||||
${TARGET}/etc/snap.conf
|
||||
fi
|
||||
if [ ! -f ${TARGET}/var/log/btmp ]; then
|
||||
install -v -m 600 /dev/null $(DESTDIR)/var/log/btmp
|
||||
install -v -m 600 /dev/null ${TARGET}/var/log/btmp
|
||||
fi
|
||||
if [ ! -f ${TARGET}/var/log/lastlog ]; then
|
||||
install -v -m 664 /dev/null $(DESTDIR)/var/log/lastlog
|
||||
install -v -m 664 /dev/null ${TARGET}/var/log/lastlog
|
||||
fi
|
||||
if [ ! -f ${TARGET}/var/log/wtmp ]; then
|
||||
install -v -m 664 /dev/null $(DESTDIR)/var/log/wtmp
|
||||
install -v -m 664 /dev/null ${TARGET}/var/log/wtmp
|
||||
fi
|
||||
;;
|
||||
prerm)
|
||||
|
||||
Reference in New Issue
Block a user