treewide: Make all the rest of configureFlags

This commit is contained in:
John Ericson
2018-08-03 12:52:40 -04:00
parent f92ed87372
commit f0d6b385d1
19 changed files with 49 additions and 30 deletions

View File

@@ -24,7 +24,9 @@ stdenv.mkDerivation {
./autogen.sh
'';
configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.out}";
configureFlags = [
(if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.out}")
];
buildPhase = "make 3-stage-bootstrap";
postInstall = "wrapProgram $out/bin/dylan-compiler --suffix PATH : ${gcc}/bin";