diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-06-30 20:31:16 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@gentoo.org> | 2024-07-03 17:24:57 -0400 |
commit | 3cb521ed1eda151aaf605d6da3fc49b128816ccc (patch) | |
tree | 59bccac5d86da83654890bee261b5c6b80517285 /sys-cluster | |
parent | media-video/pipewire: revbump recently modified ebuilds (diff) | |
download | gentoo-3cb521ed1eda151aaf605d6da3fc49b128816ccc.tar.gz gentoo-3cb521ed1eda151aaf605d6da3fc49b128816ccc.tar.bz2 gentoo-3cb521ed1eda151aaf605d6da3fc49b128816ccc.zip |
sys-cluster/pmix: stop enabling -Werror via ./configure
The aptly-named --enable-werror flag provided by upstream will carefully
enable -Werror in CI builds, even if you pass --disable-werror or
--enable-werror=no. This excellent diagnostics pass brought to you by
the world's most intuitive string validation and checking library, GNU
autoconf.
It is unclear to me why "sys-cluster/pmix: add 4.2.2" entailed adding
this configure option. The option was new in that version bump but
refraining from passing the option would do the correct thing...
Fixes: 8ad34c5cb767676d6cb5e9249565d2e4c17d838e
Bug: https://bugs.gentoo.org/906972
Bug: https://bugs.gentoo.org/908551
Closes: https://bugs.gentoo.org/892023
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/pmix/pmix-4.2.2-r1.ebuild | 3 | ||||
-rw-r--r-- | sys-cluster/pmix/pmix-4.2.8.ebuild | 1 | ||||
-rw-r--r-- | sys-cluster/pmix/pmix-5.0.2.ebuild | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/sys-cluster/pmix/pmix-4.2.2-r1.ebuild b/sys-cluster/pmix/pmix-4.2.2-r1.ebuild index 84966f965b68..b2382be92a0f 100644 --- a/sys-cluster/pmix/pmix-4.2.2-r1.ebuild +++ b/sys-cluster/pmix/pmix-4.2.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -24,7 +24,6 @@ DEPEND="${RDEPEND}" src_configure() { econf \ - --disable-werror \ $(use_enable debug) \ $(use_with munge) } diff --git a/sys-cluster/pmix/pmix-4.2.8.ebuild b/sys-cluster/pmix/pmix-4.2.8.ebuild index 9fb7d4f09632..55485e23b9ec 100644 --- a/sys-cluster/pmix/pmix-4.2.8.ebuild +++ b/sys-cluster/pmix/pmix-4.2.8.ebuild @@ -36,7 +36,6 @@ src_configure() { filter-lto econf \ - --disable-werror \ $(use_enable debug) \ $(use_with munge) } diff --git a/sys-cluster/pmix/pmix-5.0.2.ebuild b/sys-cluster/pmix/pmix-5.0.2.ebuild index ce44f08ba0c0..f7d88d473b4c 100644 --- a/sys-cluster/pmix/pmix-5.0.2.ebuild +++ b/sys-cluster/pmix/pmix-5.0.2.ebuild @@ -36,7 +36,6 @@ src_configure() { filter-lto econf \ - --disable-werror \ $(use_enable debug) \ $(use_with munge) } |