lol

Don't apply patchelf to itself

Since patchelf 0.8 rewrites binaries in place, this causes a bus
error.

+1 -1
+1 -1
pkgs/stdenv/linux/scripts/unpack-bootstrap-tools.sh
··· 23 23 if [ -z "${i##*/liblto*}" ]; then continue; fi 24 24 echo patching "$i" 25 25 LD_LIBRARY_PATH=$out/lib $LD_BINARY \ 26 - $out/bin/patchelf --set-interpreter $LD_BINARY --set-rpath $out/lib --force-rpath "$i" 26 + ./patchelf --set-interpreter $LD_BINARY --set-rpath $out/lib --force-rpath "$i" 27 27 done 28 28 29 29 for i in $out/lib/librt-*.so $out/lib/libpcre*; do