diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-06 00:57:28 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-06 00:57:54 +0200 |
commit | 5502b5ca8ca7a360f729914cb0bf8d96b80cc201 (patch) | |
tree | 115dab30cade20aecab767092983f07561199f11 /kde-plasma/plasma-meta | |
parent | sys-process/audit: -fno-common fix (diff) | |
download | gentoo-5502b5ca8ca7a360f729914cb0bf8d96b80cc201.tar.gz gentoo-5502b5ca8ca7a360f729914cb0bf8d96b80cc201.tar.bz2 gentoo-5502b5ca8ca7a360f729914cb0bf8d96b80cc201.zip |
kde-plasma/plasma-meta: Fix pkg_postinst exit condition
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-meta')
-rw-r--r-- | kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild | 2 | ||||
-rw-r--r-- | kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild b/kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild index 21f98aa79e0e..6cec1857bb3b 100644 --- a/kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild +++ b/kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild @@ -84,7 +84,7 @@ RDEPEND=" pkg_postinst() { has_version sys-auth/consolekit || return - use elogind || use systemd && return + use elogind || use systemd || return ewarn "An existing installation of sys-auth/consolekit was detected even though" ewarn "${PN} was configured with USE $(usex elogind elogind systemd)." ewarn "There can only be one session manager at runtime, otherwise random issues" diff --git a/kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild b/kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild index 08348f247127..4fea36bac723 100644 --- a/kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild +++ b/kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild @@ -85,7 +85,7 @@ RDEPEND=" pkg_postinst() { has_version sys-auth/consolekit || return - use elogind || use systemd && return + use elogind || use systemd || return ewarn "An existing installation of sys-auth/consolekit was detected even though" ewarn "${PN} was configured with USE $(usex elogind elogind systemd)." ewarn "There can only be one session manager at runtime, otherwise random issues" |