summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-16 19:45:49 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:00:27 +0200
commit825bd69b38bc73ae3174a5b357090d79be773233 (patch)
treec0fd3ce9c49a6757d8b5c8b00d66855de94055a1 /pkgs/development/compilers
parent3865e739de7ea2da3777baf38906224912aa3f9b (diff)
treewide: Make explicit that 'dev' output of boehmgc is used
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/opendylan/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/opendylan/default.nix b/pkgs/development/compilers/opendylan/default.nix
index 66e62f8965e6..0e26526ba161 100644
--- a/pkgs/development/compilers/opendylan/default.nix
+++ b/pkgs/development/compilers/opendylan/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
./autogen.sh
'';
- configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc}";
+ configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.dev}";
buildPhase = "make 3-stage-bootstrap";
postInstall = "wrapProgram $out/bin/dylan-compiler --suffix PATH : ${gcc}/bin";