diff --git a/common/build-style/waf.sh b/common/build-style/waf.sh index 6b30d5b3447..505ecd37f8c 100644 --- a/common/build-style/waf.sh +++ b/common/build-style/waf.sh @@ -2,13 +2,19 @@ # This helper is for templates using WAF to build/install. # do_configure() { - python waf configure --prefix=/usr ${configure_args} + : ${configure_script:=waf} + + python ${configure_script} configure --prefix=/usr ${configure_args} } do_build() { - python waf build ${make_build_args} + : ${configure_script:=waf} + + python ${configure_script} build ${make_build_args} } do_install() { - python waf install --destdir=${DESTDIR} ${make_install_args} + : ${configure_script:=waf} + + python ${configure_script} install --destdir=${DESTDIR} ${make_install_args} }