diff --git a/common/build-style/waf3.sh b/common/build-style/waf3.sh index 8701189bf2..30b7dc6307 100644 --- a/common/build-style/waf3.sh +++ b/common/build-style/waf3.sh @@ -2,13 +2,19 @@ # This helper is for templates using WAF with python3 to build/install. # do_configure() { - PYTHON=python3 python3 waf configure --prefix=/usr ${configure_args} + : ${configure_script:=waf} + + PYTHON=python3 python3 ${configure_script} configure --prefix=/usr ${configure_args} } do_build() { - PYTHON=python3 python3 waf build ${make_build_args} + : ${configure_script:=waf} + + PYTHON=python3 python3 ${configure_script} build ${make_build_args} } do_install() { - PYTHON=python3 python3 waf install --destdir=${DESTDIR} ${make_install_args} + : ${configure_script:=waf} + + PYTHON=python3 python3 ${configure_script} install --destdir=${DESTDIR} ${make_install_args} }