stdenv/freebsd: rsync with --safe-links

This discarss links with absolute paths, which are useless for the
bootstrap tools.
This commit is contained in:
Audrey Dutcher
2024-08-22 00:06:44 -07:00
parent 56b912ba3f
commit 90bf0c5119
+1 -1
View File
@@ -15,7 +15,7 @@
rm -f $base/nix-support/propagated-build-inputs
for f in $requisites; do
cd $f
rsync --chmod="+w" -av . $base
rsync --safe-links --chmod="+w" -av . $base
done
cd $base