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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 001C9158095 for ; Sat, 10 Sep 2022 15:18:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C628E08FE; Sat, 10 Sep 2022 15:18:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 256BEE08FE for ; Sat, 10 Sep 2022 15:18:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A32B340F04 for ; Sat, 10 Sep 2022 15:18:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82375560 for ; Sat, 10 Sep 2022 15:18:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1662823127.3f9009693aece82f013a453c7e21618820d7daa6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/elfutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/elfutils/elfutils-0.187-r1.ebuild dev-libs/elfutils/elfutils-0.187-r2.ebuild X-VCS-Directories: dev-libs/elfutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3f9009693aece82f013a453c7e21618820d7daa6 X-VCS-Branch: master Date: Sat, 10 Sep 2022 15:18:54 +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: 974e495b-ea79-459e-b1c2-9a2786f46c74 X-Archives-Hash: f98ac571eb3fc0404660d630531ce899 commit: 3f9009693aece82f013a453c7e21618820d7daa6 Author: Sam James gentoo org> AuthorDate: Sat Sep 10 15:18:23 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Sep 10 15:18:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f900969 dev-libs/elfutils: fix configure args Closes: https://bugs.gentoo.org/869530 Signed-off-by: Sam James gentoo.org> ...ls-0.187-r1.ebuild => elfutils-0.187-r2.ebuild} | 32 +++++++++++++--------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/dev-libs/elfutils/elfutils-0.187-r1.ebuild b/dev-libs/elfutils/elfutils-0.187-r2.ebuild similarity index 84% rename from dev-libs/elfutils/elfutils-0.187-r1.ebuild rename to dev-libs/elfutils/elfutils-0.187-r2.ebuild index 3fcb27f7b6a2..701a5bc1f9ad 100644 --- a/dev-libs/elfutils/elfutils-0.187-r1.ebuild +++ b/dev-libs/elfutils/elfutils-0.187-r2.ebuild @@ -76,20 +76,26 @@ src_configure() { } multilib_src_configure() { - # Valgrind option is just for running tests under it; dodgy under sandbox - # and indeed even w/ glibc with newer instructions. - ECONF_SOURCE="${S}" econf \ - $(use_enable nls) \ - --disable-debuginfod \ - --disable-libdebuginfod \ - # explicitly disable thread safety: not recommended by upstream - --disable-thread-safety \ - --disable-valgrind \ - --program-prefix="eu-" \ - --with-zlib \ - $(use_with bzip2 bzlib) \ - $(use_with lzma) \ + local myeconfargs=( + $(use_enable nls) + --disable-debuginfod + --disable-libdebuginfod + + # explicitly disable thread safety, it's not recommended by upstream + # doesn't build either on musl. + --disable-thread-safety + + # Valgrind option is just for running tests under it; dodgy under sandbox + # and indeed even w/ glibc with newer instructions. + --disable-valgrind + --program-prefix="eu-" + --with-zlib + $(use_with bzip2 bzlib) + $(use_with lzma) $(use_with zstd) + ) + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_test() {