boost: use ${python.interpreter} rather than ${python}/bin/python

This commit is contained in:
Vincent Laporte 2015-04-25 22:35:25 +02:00
parent 600d73df41
commit 7cf05bfe71

View File

@ -149,7 +149,7 @@ stdenv.mkDerivation {
configureScript = "./bootstrap.sh";
configureFlags = commonConfigureFlags ++ [
"--with-icu=${icu}"
"--with-python=${python}/bin/python"
"--with-python=${python.interpreter}"
] ++ optional (toolset != null) "--with-toolset=${toolset}";
buildPhase = builder nativeB2Args;