---
 bin/postinst-qa-check.d/50gnome2-utils | 3 +++
 bin/postinst-qa-check.d/50xdg-utils    | 6 ++++++
 2 files changed, 9 insertions(+)

diff --git a/bin/postinst-qa-check.d/50gnome2-utils 
b/bin/postinst-qa-check.d/50gnome2-utils
index 80360cf64..dacc19a43 100644
--- a/bin/postinst-qa-check.d/50gnome2-utils
+++ b/bin/postinst-qa-check.d/50gnome2-utils
@@ -36,6 +36,9 @@ gnome2_icon_cache_check() {
        # preinst initializes the baseline state for the posinst check
        [[ ${PORTAGE_QA_PHASE} == preinst ]] && return
 
+       # parallel-install makes it impossible to blame a specific package
+       has parallel-install ${FEATURES} && return
+
        # The eqatag call is prohibitively expensive if the cache is
        # missing and there are a large number of files.
        if [[ -z ${missing} && ${all_files[@]} ]]; then
diff --git a/bin/postinst-qa-check.d/50xdg-utils 
b/bin/postinst-qa-check.d/50xdg-utils
index 84f938abd..7094e75a1 100644
--- a/bin/postinst-qa-check.d/50xdg-utils
+++ b/bin/postinst-qa-check.d/50xdg-utils
@@ -32,6 +32,9 @@ xdg_desktop_database_check() {
        # preinst initializes the baseline state for the posinst check
        [[ ${PORTAGE_QA_PHASE} == preinst ]] && return
 
+       # parallel-install makes it impossible to blame a specific package
+       has parallel-install ${FEATURES} && return
+
        # The eqatag call is prohibitively expensive if the cache is
        # missing and there are a large number of files.
        if [[ -z ${missing} && ${all_files[@]} ]]; then
@@ -72,6 +75,9 @@ xdg_mimeinfo_database_check() {
        # preinst initializes the baseline state for the posinst check
        [[ ${PORTAGE_QA_PHASE} == preinst ]] && return
 
+       # parallel-install makes it impossible to blame a specific package
+       has parallel-install ${FEATURES} && return
+
        # The eqatag call is prohibitively expensive if the cache is
        # missing and there are a large number of files.
        if [[ -z ${missing} && ${all_files[@]} ]]; then
-- 
2.13.5


Reply via email to