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 37F46138334 for ; Tue, 22 Oct 2019 03:12:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73CBDE0935; Tue, 22 Oct 2019 03:12:15 +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 58AF5E0935 for ; Tue, 22 Oct 2019 03:12:15 +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 271B534C1BD for ; Tue, 22 Oct 2019 03:12:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0ED172F for ; Tue, 22 Oct 2019 03:12:11 +0000 (UTC) From: "Nick Sarnie" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nick Sarnie" Message-ID: <1571713791.23f2b23e23376333c6425187e3f70246457527a3.sarnex@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vulkan-loader/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vulkan-loader/vulkan-loader-1.1.125.ebuild media-libs/vulkan-loader/vulkan-loader-9999.ebuild X-VCS-Directories: media-libs/vulkan-loader/ X-VCS-Committer: sarnex X-VCS-Committer-Name: Nick Sarnie X-VCS-Revision: 23f2b23e23376333c6425187e3f70246457527a3 X-VCS-Branch: master Date: Tue, 22 Oct 2019 03:12:11 +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: 26a75555-7fc0-4d23-8611-3fbb6a9eb443 X-Archives-Hash: c9fb7ac3b328746d1387d35a6aab159e commit: 23f2b23e23376333c6425187e3f70246457527a3 Author: Nick Sarnie gentoo org> AuthorDate: Tue Oct 22 03:09:51 2019 +0000 Commit: Nick Sarnie gentoo org> CommitDate: Tue Oct 22 03:09:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f2b23e media-libs/vulkan-loader: Fix build Closes: https://bugs.gentoo.org/698230 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Nick Sarnie gentoo.org> media-libs/vulkan-loader/vulkan-loader-1.1.125.ebuild | 2 +- media-libs/vulkan-loader/vulkan-loader-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/vulkan-loader/vulkan-loader-1.1.125.ebuild b/media-libs/vulkan-loader/vulkan-loader-1.1.125.ebuild index 7b03900c566..644dce6b343 100644 --- a/media-libs/vulkan-loader/vulkan-loader-1.1.125.ebuild +++ b/media-libs/vulkan-loader/vulkan-loader-1.1.125.ebuild @@ -41,7 +41,7 @@ DEPEND="${PYTHON_DEPS} multilib_src_configure() { # Integrated clang assembler doesn't work with x86 - Bug #698164 - if [[ tc-is-clang && ${ABI} == x86 ]]; then + if tc-is-clang && [[ ${ABI} == x86 ]]; then append-cflags -fno-integrated-as fi diff --git a/media-libs/vulkan-loader/vulkan-loader-9999.ebuild b/media-libs/vulkan-loader/vulkan-loader-9999.ebuild index 7b03900c566..644dce6b343 100644 --- a/media-libs/vulkan-loader/vulkan-loader-9999.ebuild +++ b/media-libs/vulkan-loader/vulkan-loader-9999.ebuild @@ -41,7 +41,7 @@ DEPEND="${PYTHON_DEPS} multilib_src_configure() { # Integrated clang assembler doesn't work with x86 - Bug #698164 - if [[ tc-is-clang && ${ABI} == x86 ]]; then + if tc-is-clang && [[ ${ABI} == x86 ]]; then append-cflags -fno-integrated-as fi