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 4C30E139694 for ; Sat, 3 Jun 2017 08:27:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86CC5E0C39; Sat, 3 Jun 2017 08:27:55 +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 62409E0C39 for ; Sat, 3 Jun 2017 08:27:55 +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 3C95234172A for ; Sat, 3 Jun 2017 08:27:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0A727468 for ; Sat, 3 Jun 2017 08:27:52 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1496478444.fe7d7d25f8dfe6216c3e86ba59efb4b6e0e1915f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-3.4.2-r100.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fe7d7d25f8dfe6216c3e86ba59efb4b6e0e1915f X-VCS-Branch: master Date: Sat, 3 Jun 2017 08:27:52 +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: 23744e80-e9db-404d-a67a-8f297ea997dd X-Archives-Hash: b5d0da4d0062d84af285fad895e8cd2a commit: fe7d7d25f8dfe6216c3e86ba59efb4b6e0e1915f Author: Michał Górny gentoo org> AuthorDate: Wed May 24 13:39:51 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 3 08:27:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe7d7d25 sys-devel/llvm: Fix configure phase for 3.4.2-r100 sys-devel/llvm/llvm-3.4.2-r100.ebuild | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/sys-devel/llvm/llvm-3.4.2-r100.ebuild b/sys-devel/llvm/llvm-3.4.2-r100.ebuild index 6907006835c..bd41c339154 100644 --- a/sys-devel/llvm/llvm-3.4.2-r100.ebuild +++ b/sys-devel/llvm/llvm-3.4.2-r100.ebuild @@ -146,14 +146,14 @@ src_prepare() { python_setup } -multilib_src_configure() { +src_configure() { # disable timestamps since they confuse ccache local conf_flags=( --disable-timestamps --enable-keep-symbols --enable-shared --with-optimize-option= - --enableoptimized + --enable-optimized --disable-assertions --disable-expensive-checks --disable-terminfo @@ -165,12 +165,6 @@ multilib_src_configure() { ac_cv_prog_XML2CONFIG="" ) - if use clang; then - conf_flags+=( - --with-clang-resource-dir=../lib/clang/${PV} - ) - fi - if use libffi; then local CPPFLAGS=${CPPFLAGS} append-cppflags "$($(tc-getPKG_CONFIG) --cflags libffi)"