aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-10-25 16:22:54 +0200
committerMichał Górny <mgorny@gentoo.org>2018-10-25 17:16:44 +0200
commit53c4e1ac66f9ccfcb68b800cc1489a5da9923bb8 (patch)
tree956ff43b2049002d8d4793b8bc15fc643edac2e5
parentetc-update: handle whitespace in ID_LIKE (diff)
downloadportage-53c4e1ac.tar.gz
portage-53c4e1ac.tar.bz2
portage-53c4e1ac.zip
*-qa-check.d: fix entering EROOT in EAPI 7
Fix running QA checks from EROOT in EAPI 7 if the value is empty. Previously, this wrongly caused 'cd' to be run with empty value implying home directory. Bug: https://bugs.gentoo.org/668638 Signed-off-by: Michał Górny <mgorny@gentoo.org> Reviewed-by: Zac Medico <zmedico@gentoo.org>
-rwxr-xr-xbin/misc-functions.sh2
-rw-r--r--bin/postinst-qa-check.d/50gnome2-utils2
-rw-r--r--bin/postinst-qa-check.d/50xdg-utils2
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index 8c88f8f35..ff3d2a1ff 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -174,7 +174,7 @@ postinst_qa_check() {
local EPREFIX= EROOT=${ROOT}
fi
- cd "${EROOT}" || die "cd failed"
+ cd "${EROOT:-/}" || die "cd failed"
# Collect the paths for QA checks, highest prio first.
paths=(
diff --git a/bin/postinst-qa-check.d/50gnome2-utils b/bin/postinst-qa-check.d/50gnome2-utils
index a50df009a..29ea7c844 100644
--- a/bin/postinst-qa-check.d/50gnome2-utils
+++ b/bin/postinst-qa-check.d/50gnome2-utils
@@ -54,7 +54,7 @@ gnome2_icon_cache_check() {
}
gnome2_utils_postinst_check() {
- cd "${EROOT}" || die
+ cd "${EROOT:-/}" || die
gnome2_icon_cache_check
}
diff --git a/bin/postinst-qa-check.d/50xdg-utils b/bin/postinst-qa-check.d/50xdg-utils
index 7094e75a1..b33df4743 100644
--- a/bin/postinst-qa-check.d/50xdg-utils
+++ b/bin/postinst-qa-check.d/50xdg-utils
@@ -90,7 +90,7 @@ xdg_mimeinfo_database_check() {
}
xdg_utils_postinst_check() {
- cd "${EROOT}" || die
+ cd "${EROOT:-/}" || die
xdg_desktop_database_check
xdg_mimeinfo_database_check
}