From: Andrea Zagli Date: Sun, 11 Sep 2022 17:44:48 +0000 (+0200) Subject: Use of hard links, so the root can be ch-rooted. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=37b0c7ada868eea0dade774cec0597ea2e5645e5;p=nixdeb Use of hard links, so the root can be ch-rooted. --- diff --git a/nixdeb.sh b/nixdeb.sh index 7e7b0df..bd3402d 100755 --- a/nixdeb.sh +++ b/nixdeb.sh @@ -36,8 +36,10 @@ links () { links $i else - # file link - ln -s $(realpath $i) $ROOT_DIR${i/$INSTALL_DIR_PKG/} + # file hard link + + # TODO if the file is a symlink it must be resolved and created relative to the ROOT + ln $(realpath $i) $ROOT_DIR${i/$INSTALL_DIR_PKG/} fi done }