summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/boost
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-04-11 23:19:37 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-04-23 10:52:06 +0200
commitad033f7665c14133cd17225d97a8db79012ddcbe (patch)
tree7724ead66aa965180fce5af76680a1eb7a0c7aed /pkgs/development/libraries/boost
parent7aae991fa2422459c5bab6498bc671d7dcc19033 (diff)
boost: Fix generation of crossB2Args.
`concatMapStringsSep` actually needs a function to work on the list items, but it was probably a leftover from the refactor in af8654d. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/development/libraries/boost')
-rw-r--r--pkgs/development/libraries/boost/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index 5b0c06bd6bb2..65d188a86c54 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -77,7 +77,7 @@ let
"toolset=gcc-cross"
"--without-python"
];
- crossB2Args = concatMapStringsSep " " (genericB2Flags ++ crossB2Flags);
+ crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags);
builder = b2Args: ''
./b2 ${b2Args}