diff options
Diffstat (limited to 'vars/python3.vars')
-rw-r--r-- | vars/python3.vars | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vars/python3.vars b/vars/python3.vars index 70e1fa9b..d0edb8e3 100644 --- a/vars/python3.vars +++ b/vars/python3.vars @@ -3,15 +3,15 @@ # pkg_python3_configure_pre() { - (build_fileop cd "../${PKG_SUBDIR}" && autoconf); + (ex_build_fileop cd "../${PKG_SUBDIR}" && autoconf); (unset AR BLDSHARED CC CFLAGS CPPFLAGS CXX LDFLAGS RANLIB; - build_fileop mv config.cache "../${PKG_SUBDIR}/config.cache"; + ex_build_fileop mv config.cache "../${PKG_SUBDIR}/config.cache"; "../${PKG_SUBDIR}/configure"; make _FIP=Programs/host_freeze_importlib Programs/host_freeze_importlib \ BUILDPYTHON=hostpython hostpython \ PGEN=Parser/hostpgen Parser/hostpgen; make distclean); - build_fileop mv "../${PKG_SUBDIR}/config.cache" .; + ex_build_fileop mv "../${PKG_SUBDIR}/config.cache" .; }; # vim:filetype=sh |