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 B46C513835A for ; Tue, 24 Nov 2020 13:04:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06991E0833; Tue, 24 Nov 2020 13:04:09 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E60CDE0833 for ; Tue, 24 Nov 2020 13:04:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 5B0CC340F4E for ; Tue, 24 Nov 2020 13:04:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D0A842F for ; Tue, 24 Nov 2020 13:04:05 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1606223036.0b33fe732f80003725c3a54c5c8aa68050f22a0d.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/concurrencykit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild X-VCS-Directories: dev-libs/concurrencykit/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 0b33fe732f80003725c3a54c5c8aa68050f22a0d X-VCS-Branch: master Date: Tue, 24 Nov 2020 13:04:05 +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: 6b997c89-dc0f-4bf3-9e2d-a75db6737696 X-Archives-Hash: 0cb121997f8283a43536abf996fc2ea2 commit: 0b33fe732f80003725c3a54c5c8aa68050f22a0d Author: Conrad Kostecki gentoo org> AuthorDate: Tue Nov 24 12:58:29 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Nov 24 13:03:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b33fe73 dev-libs/concurrencykit: fix x86 build Closes: https://bugs.gentoo.org/756313 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild b/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild index 5d89ca45945..52fdc2f3633 100644 --- a/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild +++ b/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild @@ -30,11 +30,11 @@ PATCHES=( src_configure() { tc-export AR CC LD - export PROFILE="x86$(usex amd64 '_64' '')" + $(usex x86 'export PROFILE=x86' '') local myeconfargs=( "--disable-static" ) - GZIP="" $(usex x86 'PROFILE=x86' '') econf ${myeconfargs[@]} + GZIP="" econf ${myeconfargs[@]} }