mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 09:57:58 +00:00
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>
This commit is contained in:
parent
7aae991fa2
commit
ad033f7665
@ -77,7 +77,7 @@ let
|
||||
"toolset=gcc-cross"
|
||||
"--without-python"
|
||||
];
|
||||
crossB2Args = concatMapStringsSep " " (genericB2Flags ++ crossB2Flags);
|
||||
crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags);
|
||||
|
||||
builder = b2Args: ''
|
||||
./b2 ${b2Args}
|
||||
|
Loading…
Reference in New Issue
Block a user