mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
pahole: fix build (ZHF)
This commit is contained in:
parent
ee0db7648c
commit
bfa5df6a5e
@ -11,8 +11,8 @@ stdenv.mkDerivation {
|
||||
|
||||
postInstall = ''
|
||||
for p in $out/bin/*; do
|
||||
rpath=`patchelf --print-rpath $p`:$out
|
||||
patchelf --set-rpath $rpath $p
|
||||
rpath=`patchelf --print-rpath $p || true`:$out
|
||||
patchelf --set-rpath "$rpath" $p || true
|
||||
done
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user