about summary refs log tree commit diff
path: root/pkgs/development/compilers/opendylan/bin.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-01-24 09:29:00 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-01-24 10:03:33 +0200
commitd0058081272f58025693581e751facc388b46c86 (patch)
tree7228b33d6794d334167ed6470e77a3a141e438f8 /pkgs/development/compilers/opendylan/bin.nix
parent79738a639a5d93fc85ec73e382183af98499830a (diff)
treewide: Mass replace 'boehmgc}/lib' to refer the 'out' output
Diffstat (limited to 'pkgs/development/compilers/opendylan/bin.nix')
-rw-r--r--pkgs/development/compilers/opendylan/bin.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/opendylan/bin.nix b/pkgs/development/compilers/opendylan/bin.nix
index 4d18b8d328d60..492b1c4b33381 100644
--- a/pkgs/development/compilers/opendylan/bin.nix
+++ b/pkgs/development/compilers/opendylan/bin.nix
@@ -24,10 +24,10 @@ stdenv.mkDerivation {
     interpreter="$(cat "$NIX_CC"/nix-support/dynamic-linker)"
     for a in "$out"/bin/*; do 
       patchelf --set-interpreter "$interpreter" "$a"
-      patchelf --set-rpath "$out/lib:${boehmgc}/lib" "$a"
+      patchelf --set-rpath "$out/lib:${boehmgc.out}/lib" "$a"
     done
     for a in "$out"/lib/*.so; do 
-      patchelf --set-rpath "$out/lib:${boehmgc}/lib" "$a"
+      patchelf --set-rpath "$out/lib:${boehmgc.out}/lib" "$a"
     done
     sed -i -e "s|\-lgc|\-L${boehmgc}\/lib -lgc|" $out/lib/config.jam
     wrapProgram $out/bin/dylan-compiler --suffix PATH : ${gcc}/bin