summary refs log tree commit diff
path: root/pkgs/development/libraries/boehm-gc
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-02-03 13:30:04 -0600
committerWill Dietz <w@wdtz.org>2019-02-03 13:35:34 -0600
commit9214f858432087f1fe80fe4550506839201ca7c3 (patch)
tree68b057ad927c7f4e3817428b44e3023a930ac5e4 /pkgs/development/libraries/boehm-gc
parent0938316e058850460ea206c8eb2ebb819cdee493 (diff)
downloadnixpkgs-9214f858432087f1fe80fe4550506839201ca7c3.tar
nixpkgs-9214f858432087f1fe80fe4550506839201ca7c3.tar.gz
nixpkgs-9214f858432087f1fe80fe4550506839201ca7c3.tar.bz2
nixpkgs-9214f858432087f1fe80fe4550506839201ca7c3.tar.lz
nixpkgs-9214f858432087f1fe80fe4550506839201ca7c3.tar.xz
nixpkgs-9214f858432087f1fe80fe4550506839201ca7c3.tar.zst
nixpkgs-9214f858432087f1fe80fe4550506839201ca7c3.zip
boehmgc_766: similarly fix CFLAGS w/musl to include space first
Diffstat (limited to 'pkgs/development/libraries/boehm-gc')
-rw-r--r--pkgs/development/libraries/boehm-gc/7.6.6.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/boehm-gc/7.6.6.nix b/pkgs/development/libraries/boehm-gc/7.6.6.nix
index da71e40187f..68f5d7afcf4 100644
--- a/pkgs/development/libraries/boehm-gc/7.6.6.nix
+++ b/pkgs/development/libraries/boehm-gc/7.6.6.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   separateDebugInfo = stdenv.isLinux;
 
   preConfigure = stdenv.lib.optionalString (stdenv.hostPlatform.libc == "musl") ''
-    export NIX_CFLAGS_COMPILE+="-D_GNU_SOURCE -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR"
+    export NIX_CFLAGS_COMPILE+=" -D_GNU_SOURCE -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR"
   '';
 
   patches = [ (fetchpatch {