treewide: Make explicit that 'dev' output of boehmgc is used

This commit is contained in:
Tuomas Tynkkynen
2016-05-19 10:00:27 +02:00
committed by Vladimír Čunát
parent 3865e739de
commit 825bd69b38
3 changed files with 3 additions and 3 deletions
@@ -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";