summaryrefslogtreecommitdiffhomepage
path: root/vars/python3.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2017-02-06 01:20:04 +0100
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2017-02-06 01:20:04 +0100
commit05e6185f7740f3acef556ba39cff95139bd7130d (patch)
tree13d958e045edb28dab3cb225bc244c35acb27db1 /vars/python3.vars
parent36ab9378686ad6f3783f26696615e33e170e235f (diff)
downloadmidipix_build-05e6185f7740f3acef556ba39cff95139bd7130d.tar.bz2
midipix_build-05e6185f7740f3acef556ba39cff95139bd7130d.tar.xz
build.sh, {subr,vars}/*: general cleanup.
Diffstat (limited to 'vars/python3.vars')
-rw-r--r--vars/python3.vars8
1 files changed, 4 insertions, 4 deletions
diff --git a/vars/python3.vars b/vars/python3.vars
index 2077d53e..70e1fa9b 100644
--- a/vars/python3.vars
+++ b/vars/python3.vars
@@ -3,15 +3,15 @@
#
pkg_python3_configure_pre() {
- (cd ../${PKG_SUBDIR} && autoconf);
+ (build_fileop cd "../${PKG_SUBDIR}" && autoconf);
(unset AR BLDSHARED CC CFLAGS CPPFLAGS CXX LDFLAGS RANLIB;
- mv -- config.cache ../${PKG_SUBDIR}/config.cache;
- ../${PKG_SUBDIR}/configure;
+ 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);
- mv -- ../${PKG_SUBDIR}/config.cache .;
+ build_fileop mv "../${PKG_SUBDIR}/config.cache" .;
};
# vim:filetype=sh