1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Use python2 explicitely instead of assuming that the python binary is version 2.

This commit is contained in:
benjamin.drung@gmail.com 2013-12-16 20:19:00 +00:00
parent 2f4334dfaf
commit d60b249653

View File

@ -5,7 +5,7 @@ function waf
pkg="$1"
shift
pushd >/dev/null ${pkg}
python waf --prefix="." --include="." $@ configure || exit 1
python2 waf --prefix="." --include="." $@ configure || exit 1
popd >/dev/null
if [ "${pkg}" == "lv2" ]