boost: fix cross build if enablePython (#376835)

authored by misuzu.tngl.sh and committed by

GitHub 95536da6 74000f9e

+1 -1
+1 -1
pkgs/development/libraries/boost/generic.nix
··· 282 # b2 needs to be explicitly told how to find Python when cross-compiling 283 + lib.optionalString enablePython '' 284 cat << EOF >> user-config.jam 285 - using python : : ${python.interpreter} 286 : ${python}/include/python${python.pythonVersion} 287 : ${python}/lib 288 ;
··· 282 # b2 needs to be explicitly told how to find Python when cross-compiling 283 + lib.optionalString enablePython '' 284 cat << EOF >> user-config.jam 285 + using python : : ${python.pythonOnBuildForHost.interpreter} 286 : ${python}/include/python${python.pythonVersion} 287 : ${python}/lib 288 ;