diff options
-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; |