From ffb6f9396884aaf7a9c84faa994cde3c458eb83f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 15 Sep 2017 08:31:43 +0200 Subject: [PATCH] gnome2.eclass: Fix accidental reverse of schema update conditional Closes: https://bugs.gentoo.org/630874 --- eclass/gnome2.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index d2b45ad560b3..6db6d08b14e6 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -340,7 +340,7 @@ gnome2_pkg_postinst() { if [[ -n ${GNOME2_ECLASS_ICONS} ]]; then gnome2_icon_cache_update fi - if [[ -z ${GNOME2_ECLASS_GLIB_SCHEMAS} ]]; then + if [[ -n ${GNOME2_ECLASS_GLIB_SCHEMAS} ]]; then gnome2_schemas_update fi gnome2_scrollkeeper_update @@ -364,7 +364,7 @@ gnome2_pkg_postrm() { if [[ -n ${GNOME2_ECLASS_ICONS} ]]; then gnome2_icon_cache_update fi - if [[ -z ${GNOME2_ECLASS_GLIB_SCHEMAS} ]]; then + if [[ -n ${GNOME2_ECLASS_GLIB_SCHEMAS} ]]; then gnome2_schemas_update fi gnome2_scrollkeeper_update -- 2.26.2