pahole: fix build (ZHF)

This commit is contained in:
Luca Bruno 2015-07-21 16:01:20 +02:00
parent ee0db7648c
commit bfa5df6a5e

View File

@ -11,8 +11,8 @@ stdenv.mkDerivation {
postInstall = '' postInstall = ''
for p in $out/bin/*; do for p in $out/bin/*; do
rpath=`patchelf --print-rpath $p`:$out rpath=`patchelf --print-rpath $p || true`:$out
patchelf --set-rpath $rpath $p patchelf --set-rpath "$rpath" $p || true
done done
''; '';