Revert "stdenv bootstrap tools: adjust with glibc-2.34"
This reverts commit c1ef87e8d0
.
I didn't realize that it would rebuild all linux stdenvs;
I certainly don't want to incur such a rebuild at this point.
This commit is contained in:
parent
4f30fc6b4d
commit
e66ed266f8
1 changed files with 1 additions and 2 deletions
|
@ -29,9 +29,8 @@ for i in $out/bin/* $out/libexec/gcc/*/*/*; do
|
|||
./patchelf --set-interpreter $LD_BINARY --set-rpath $out/lib --force-rpath "$i"
|
||||
done
|
||||
|
||||
# With glibc-2.34 the librt so-file is named a bit differently and doesn't need patchelfing.
|
||||
for i in $out/lib/librt-*.so $out/lib/libpcre*; do
|
||||
if [ -L "$i" ] || [ ! -e "$i" ]; then continue; fi
|
||||
if [ -L "$i" ]; then continue; fi
|
||||
echo patching "$i"
|
||||
$out/bin/patchelf --set-rpath $out/lib --force-rpath "$i"
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue