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 6DE81139694 for ; Wed, 15 Mar 2017 06:02:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1004E0D72; Wed, 15 Mar 2017 06:02:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AEF89E0D72 for ; Wed, 15 Mar 2017 06:02:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E30DA33BF1C for ; Wed, 15 Mar 2017 06:02:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AEA3F68C8 for ; Wed, 15 Mar 2017 06:02:31 +0000 (UTC) From: "Mike Frysinger" 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 Frysinger" Message-ID: <1489557717.5bfe0f94df7802976a948b541b56be5fc68389e3.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/lshw/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/lshw/lshw-02.17b-r2.ebuild X-VCS-Directories: sys-apps/lshw/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 5bfe0f94df7802976a948b541b56be5fc68389e3 X-VCS-Branch: master Date: Wed, 15 Mar 2017 06:02:31 +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-Archives-Salt: bacf223f-56b4-4df5-b1ee-51e9c27147d6 X-Archives-Hash: 4ddac39444a6e1ba41c8ae492da70225 commit: 5bfe0f94df7802976a948b541b56be5fc68389e3 Author: Mike Frysinger gentoo org> AuthorDate: Wed Mar 15 05:51:08 2017 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Mar 15 06:01:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bfe0f94 sys-apps/lshw: support proper $PKG_CONFIG settings sys-apps/lshw/lshw-02.17b-r2.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys-apps/lshw/lshw-02.17b-r2.ebuild b/sys-apps/lshw/lshw-02.17b-r2.ebuild index ffd8414595e..74fc33cfafa 100644 --- a/sys-apps/lshw/lshw-02.17b-r2.ebuild +++ b/sys-apps/lshw/lshw-02.17b-r2.ebuild @@ -43,10 +43,13 @@ src_prepare() { sed -i \ -e "/^LANGUAGES =/ s/=.*/= $(l10n_get_locales)/" \ src/po/Makefile || die + sed -i \ + -e 's:\:${PKG_CONFIG}:' \ + src/Makefile src/gui/Makefile || die } src_compile() { - tc-export CC CXX AR + tc-export CC CXX AR PKG_CONFIG use static && append-ldflags -static # Need two sep make statements to avoid parallel build issues. #588174