some evaluation fixes

Not all multiple-output fixups were properly tested.
This commit is contained in:
Vladimír Čunát
2015-10-28 10:15:52 +01:00
parent 148e03b2f1
commit 31d9263159
4 changed files with 5 additions and 5 deletions
@@ -31,7 +31,7 @@ stdenv.mkDerivation {
for f in $(find $out); do
if [ -f "$f" ] && patchelf "$f" 2> /dev/null; then
patchelf --set-interpreter ${glibc.out}/lib/ld-linux.so.2 \
--set-rpath $out/lib:${gcc.lib}/lib:${ncurses.lib}/lib \
--set-rpath $out/lib:${gcc.lib or gcc}/lib:${ncurses.lib}/lib \
"$f" || true
fi
done