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>
This commit is contained in:
Andreas Sturmlechner
2020-07-06 00:57:28 +02:00
parent 02b3996223
commit 5502b5ca8c
2 changed files with 2 additions and 2 deletions

View File

@@ -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"

View File

@@ -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"