diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-09-15 08:31:43 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-09-15 08:32:27 +0200 |
commit | ffb6f9396884aaf7a9c84faa994cde3c458eb83f (patch) | |
tree | 016571da3eb418f352f5d914b2faca245da87c3e /eclass/gnome2.eclass | |
parent | dev-python/tlslite: remove doc USE as no docs (diff) | |
download | gentoo-ffb6f9396884aaf7a9c84faa994cde3c458eb83f.tar.gz gentoo-ffb6f9396884aaf7a9c84faa994cde3c458eb83f.tar.bz2 gentoo-ffb6f9396884aaf7a9c84faa994cde3c458eb83f.zip |
gnome2.eclass: Fix accidental reverse of schema update conditional
Closes: https://bugs.gentoo.org/630874
Diffstat (limited to 'eclass/gnome2.eclass')
-rw-r--r-- | eclass/gnome2.eclass | 4 |
1 files 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 |