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 170B2139694 for ; Wed, 15 Mar 2017 05:43:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D1D9E0D33; Wed, 15 Mar 2017 05:43:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 067ABE0D33 for ; Wed, 15 Mar 2017 05:43:00 +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 E277B340AD2 for ; Wed, 15 Mar 2017 05:42:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5260568AB for ; Wed, 15 Mar 2017 05:42:57 +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: <1489556518.ec9e0d08245981acc017e8944d2672793f6a1b33.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: ec9e0d08245981acc017e8944d2672793f6a1b33 X-VCS-Branch: master Date: Wed, 15 Mar 2017 05:42:57 +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: ae1f0bf9-5e0f-4804-80df-9099d1be1644 X-Archives-Hash: 65c7de9a32ad7a925db60606c66068be commit: ec9e0d08245981acc017e8944d2672793f6a1b33 Author: Mike Frysinger gentoo org> AuthorDate: Wed Mar 15 05:40:18 2017 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Mar 15 05:41:58 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec9e0d08 sys-apps/lshw: fix parallel build after usex rework #588174 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 14d905904a1..ffd8414595e 100644 --- a/sys-apps/lshw/lshw-02.17b-r2.ebuild +++ b/sys-apps/lshw/lshw-02.17b-r2.ebuild @@ -49,7 +49,10 @@ src_compile() { tc-export CC CXX AR use static && append-ldflags -static - emake SQLITE=$(usex sqlite 1 0) all $(usex gtk 'gui' '') + # Need two sep make statements to avoid parallel build issues. #588174 + local sqlite=$(usex sqlite 1 0) + emake SQLITE=${sqlite} all + use gtk && emake SQLITE=${sqlite} gui } src_install() {