Merge pull request #7573 from vbgl/boost_python

boost: use ${python.interpreter} rather than ${python}/bin/python
This commit is contained in:
Domen Kožar 2015-04-25 23:06:46 +02:00
commit b27699241d

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;