commit: c187260a12576004216d3553c510875ecc68c566
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 21 18:14:58 2019 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Aug 21 18:14:58 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c187260a
app-emulation/conmon: Fix USE=-systemd for version 0.4.0
Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
app-emulation/conmon/conmon-0.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-emulation/conmon/conmon-0.4.0.ebuild
b/app-emulation/conmon/conmon-0.4.0.ebuild
index c5f0eb405cd..320f6f44953 100644
--- a/app-emulation/conmon/conmon-0.4.0.ebuild
+++ b/app-emulation/conmon/conmon-0.4.0.ebuild
@@ -19,8 +19,8 @@ src_prepare() {
default
if ! use systemd; then
- sed -e 's| pkg-config --exists libsystemd-journal | false |' \
- -e 's| pkg-config --exists libsystemd | false |' \
+ sed -e 's| $(PKG_CONFIG) --exists libsystemd-journal | false |'
\
+ -e 's| $(PKG_CONFIG) --exists libsystemd | false |' \
-i Makefile || die
fi
}