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"
|
"toolset=gcc-cross"
|
||||||
"--without-python"
|
"--without-python"
|
||||||
];
|
];
|
||||||
crossB2Args = concatMapStringsSep " " (genericB2Flags ++ crossB2Flags);
|
crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags);
|
||||||
|
|
||||||
builder = b2Args: ''
|
builder = b2Args: ''
|
||||||
./b2 ${b2Args}
|
./b2 ${b2Args}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user