diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2017-02-03 04:25:20 +0100 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2017-02-03 04:25:20 +0100 |
commit | 7fe25dbd38d2c08abdef9db1ec9cb61122b54da5 (patch) | |
tree | 5343bcf128ff5cff1d5a86c612c4632029b05bbf | |
parent | f539a4f6f6e2865d20f6fa6129e8c5315c3eafa1 (diff) | |
download | midipix_build-7fe25dbd38d2c08abdef9db1ec9cb61122b54da5.tar.bz2 midipix_build-7fe25dbd38d2c08abdef9db1ec9cb61122b54da5.tar.xz |
build.sh, subr/pkg_setup_env.subr: renamed build step `setup' to `setup_env.'
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | subr/pkg_setup_env.subr (renamed from subr/pkg_setup.subr) | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -213,7 +213,7 @@ for BUILD_TARGET_LC in $(bp_subst_tgts ${BUILD_TARGETS_META}); do done; parse_with_pkg_name ${BUILD_PACKAGE_LC%.*}; for __ in all disabled fetch extract build_dir patch_pre autoconf patch \ - setup distclean configure clean build install; do + setup_env distclean configure clean build install; do case ${__} in all) if test_cmd pkg_${PKG_NAME}_all; then diff --git a/subr/pkg_setup.subr b/subr/pkg_setup_env.subr index 0ee60bb7..de304328 100644 --- a/subr/pkg_setup.subr +++ b/subr/pkg_setup_env.subr @@ -3,7 +3,7 @@ # See warning at the top of build.vars. # -pkg_setup() { +pkg_setup_env() { PKG_SUBDIR_PATH=${PWD}/${PKG_SUBDIR#/}; if [ -z "${PKG_CONFIGURE}" ]; then PKG_CONFIGURE=${PKG_SUBDIR_PATH}/configure; |