From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C73B613835B for ; Mon, 14 Dec 2020 16:47:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD979E091B; Mon, 14 Dec 2020 16:47:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AF4DE091B for ; Mon, 14 Dec 2020 16:47:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 920EF341261 for ; Mon, 14 Dec 2020 16:47:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14E75BD for ; Mon, 14 Dec 2020 16:47:04 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1607964318.59f1666ed50efdc20fb89ed20f6b3bc12f592c76.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-system-monitor/ X-VCS-Repository: repo/gentoo X-VCS-Files: mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild X-VCS-Directories: mate-extra/mate-system-monitor/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 59f1666ed50efdc20fb89ed20f6b3bc12f592c76 X-VCS-Branch: master Date: Mon, 14 Dec 2020 16:47:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6d449e1c-f069-4c45-934f-f42b8dce0de4 X-Archives-Hash: 521da9f046e49ef507e5bd34db184519 commit: 59f1666ed50efdc20fb89ed20f6b3bc12f592c76 Author: Mike Gilbert gentoo org> AuthorDate: Sun Dec 13 03:04:35 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Dec 14 16:45:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59f1666e mate-extra/mate-system-monitor: fix quoting for pkg-config Bug: https://bugs.gentoo.org/756238 Signed-off-by: Mike Gilbert gentoo.org> mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild | 7 ++++--- mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild index d6a7c0848c4..5634e8c0117 100644 --- a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild +++ b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit mate +inherit mate toolchain-funcs if [[ ${PV} != 9999 ]]; then KEYWORDS="amd64 ~arm ~arm64 x86" @@ -51,9 +51,10 @@ src_configure() { if use elogind || use systemd; then myconf+=( --enable-systemd ) if use elogind; then + local pkgconfig="$(tc-getPKG_CONFIG)" myconf+=( - SYSTEMD_CFLAGS=`pkg-config --cflags "libelogind" 2>/dev/null` - SYSTEMD_LIBS=`pkg-config --libs "libelogind" 2>/dev/null` + SYSTEMD_CFLAGS="$(${pkgconfig} --cflags "libelogind")" + SYSTEMD_LIBS="$(${pkgconfig} --libs "libelogind")" ) fi else diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild index a489ee3adc3..a031a4ddd4c 100644 --- a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild +++ b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit mate +inherit mate toolchain-funcs if [[ ${PV} != 9999 ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~x86" @@ -51,9 +51,10 @@ src_configure() { if use elogind || use systemd; then myconf+=( --enable-systemd ) if use elogind; then + local pkgconfig="$(tc-getPKG_CONFIG)" myconf+=( - SYSTEMD_CFLAGS=`pkg-config --cflags "libelogind" 2>/dev/null` - SYSTEMD_LIBS=`pkg-config --libs "libelogind" 2>/dev/null` + SYSTEMD_CFLAGS="$(${pkgconfig} --cflags "libelogind")" + SYSTEMD_LIBS="$(${pkgconfig} --libs "libelogind")" ) fi else