summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-03 12:52:40 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-03 17:06:03 -0400
commitf0d6b385d12600ab307ab205c166c993d3588087 (patch)
treefc915e69eb5a80b27e17214d285110283fcccf18 /pkgs/development/compilers
parentf92ed87372042fa2ee4c2048ae47c511c9285a1b (diff)
downloadnixlib-f0d6b385d12600ab307ab205c166c993d3588087.tar
nixlib-f0d6b385d12600ab307ab205c166c993d3588087.tar.gz
nixlib-f0d6b385d12600ab307ab205c166c993d3588087.tar.bz2
nixlib-f0d6b385d12600ab307ab205c166c993d3588087.tar.lz
nixlib-f0d6b385d12600ab307ab205c166c993d3588087.tar.xz
nixlib-f0d6b385d12600ab307ab205c166c993d3588087.tar.zst
nixlib-f0d6b385d12600ab307ab205c166c993d3588087.zip
treewide: Make all the rest of configureFlags
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/opendylan/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/compilers/opendylan/default.nix b/pkgs/development/compilers/opendylan/default.nix
index d00080282d7c..17d474359da4 100644
--- a/pkgs/development/compilers/opendylan/default.nix
+++ b/pkgs/development/compilers/opendylan/default.nix
@@ -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";