expat: split dev output

This commit is contained in:
Vladimír Čunát
2015-10-15 13:57:38 +02:00
parent ad02a45af0
commit dd915f82e7
11 changed files with 19 additions and 16 deletions

View File

@@ -64,8 +64,8 @@ let
] ++ optional (variant == "release") "debug-symbols=off";
nativeB2Flags = [
"-sEXPAT_INCLUDE=${expat}/include"
"-sEXPAT_LIBPATH=${expat}/lib"
"-sEXPAT_INCLUDE=${expat.dev}/include"
"-sEXPAT_LIBPATH=${expat.out}/lib"
] ++ optional (toolset != null) "toolset=${toolset}"
++ optional (mpi != null) "--user-config=user-config.jam";
nativeB2Args = concatStringsSep " " (genericB2Flags ++ nativeB2Flags);