kiss: Install fixes when using KISS_ROOT

This commit is contained in:
Dylan Araps 2020-05-12 10:42:54 +03:00
parent 60b279731c
commit c320af4ebb
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 2 additions and 2 deletions

4
kiss
View File

@ -1033,7 +1033,7 @@ pkg_install_files() {
*/)
# Skip directories if they already exist in the file system.
# (Think /usr/bin, /usr/lib, etc).
[ -d "$line" ] || mkdir -m "$oct" "$KISS_ROOT/$line"
[ -d "$KISS_ROOT/$line" ] || mkdir -m "$oct" "$KISS_ROOT/$line"
;;
*) test "$1" "$KISS_ROOT/$line" ||
@ -1045,7 +1045,7 @@ pkg_install_files() {
# (Think baselayout being updated)
[ -d "$KISS_ROOT/$line" ] && continue
cp -fPp "$2/$line" "$KISS_ROOT/${line%/*}"
cp -fPp "$2/$line" "$KISS_ROOT/$line"
chown -h root:root "$KISS_ROOT/$line"
else
cp -f "$2/$line" "$KISS_ROOT/$line"