summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_configure_patch.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-04-06 11:32:28 +0100
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-04-06 11:32:28 +0100
commit84398bdc8a999f4f537e8f98d8853c63dcdda8b0 (patch)
tree8aa50bc1ec5c686fe4af9c8927ef438bc84fd56e /subr/pkg_configure_patch.subr
parent0b34be07625808976bb62318a2520960fdbc4926 (diff)
downloadmidipix_build-84398bdc8a999f4f537e8f98d8853c63dcdda8b0.tar.bz2
midipix_build-84398bdc8a999f4f537e8f98d8853c63dcdda8b0.tar.xz
subr/pkg_configure_patch.subr:pkg_configure_patch(): correctly reference possibly undefined ${PKG_{FNAME,URLS_GIT}}.
subr/pkg_fetch_download.subr:pkg_fetch_download_clean_dlcache(): correctly reference possibly undefined ${_pkg_fname}.
Diffstat (limited to 'subr/pkg_configure_patch.subr')
-rw-r--r--subr/pkg_configure_patch.subr4
1 files changed, 2 insertions, 2 deletions
diff --git a/subr/pkg_configure_patch.subr b/subr/pkg_configure_patch.subr
index b789a80e..7569c6ac 100644
--- a/subr/pkg_configure_patch.subr
+++ b/subr/pkg_configure_patch.subr
@@ -6,8 +6,8 @@ pkg_configure_patch() {
local _patch_cwd="" _patch_dir="${MIDIPIX_BUILD_PWD}/patches" _patch_fname=""\
_patches_done="" _pkg_name_full="${PKG_NAME}${PKG_VERSION:+-${PKG_VERSION}}";
- if [ -n "${PKG_FNAME}" ]\
- && [ -n "${PKG_URLS_GIT}" ]; then
+ if [ -n "${PKG_FNAME:-}" ]\
+ && [ -n "${PKG_URLS_GIT:-}" ]; then
_patch_cwd="${PKG_BASE_DIR}";
else
_patch_cwd="${PKG_BASE_DIR}/${PKG_SUBDIR}";