Commit 90bf0c51 authored by Audrey Dutcher's avatar Audrey Dutcher
Browse files

stdenv/freebsd: rsync with --safe-links

This discarss links with absolute paths, which are useless for the
bootstrap tools.
parent 56b912ba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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