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 710AB1382C5 for ; Thu, 17 Dec 2020 18:56:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9CA0E08AD; Thu, 17 Dec 2020 18:56:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 8C5A4E08AD for ; Thu, 17 Dec 2020 18:56:40 +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 77ADF340E04 for ; Thu, 17 Dec 2020 18:56:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E442E50 for ; Thu, 17 Dec 2020 18:56:37 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1608231394.dc1fc492fef113411c4167184f4e6ae85f70863f.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgcrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild X-VCS-Directories: dev-libs/libgcrypt/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: dc1fc492fef113411c4167184f4e6ae85f70863f X-VCS-Branch: master Date: Thu, 17 Dec 2020 18:56:37 +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: 043fdcc9-60b5-41dd-9819-a2ba08ecffbf X-Archives-Hash: 11bfd896557f3a66e2f0b5d08f77d470 commit: dc1fc492fef113411c4167184f4e6ae85f70863f Author: Ionen Wolkens gmail com> AuthorDate: Thu Dec 17 10:16:15 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Dec 17 18:56:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc1fc492 dev-libs/libgcrypt: guard CC_FOR_BUILD with quotes Caused build failure with abi_x86_32 and bash-5.1 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Ionen Wolkens gmail.com> Closes: https://bugs.gentoo.org/760438 Signed-off-by: Lars Wendler gentoo.org> dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild | 2 +- dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild b/dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild index 5b264afc9cd..d716211b8e2 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.8.6.ebuild @@ -40,7 +40,7 @@ multilib_src_configure() { append-cflags -Wa,--divide fi local myeconfargs=( - CC_FOR_BUILD=$(tc-getBUILD_CC) + CC_FOR_BUILD="$(tc-getBUILD_CC)" --enable-noexecstack --disable-static $(use_enable o-flag-munging O-flag-munging) diff --git a/dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild b/dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild index d95cba2dee7..8b917525e36 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.8.7.ebuild @@ -40,7 +40,7 @@ multilib_src_configure() { append-cflags -Wa,--divide fi local myeconfargs=( - CC_FOR_BUILD=$(tc-getBUILD_CC) + CC_FOR_BUILD="$(tc-getBUILD_CC)" --enable-noexecstack --disable-static $(use_enable o-flag-munging O-flag-munging)