commit: f3bd0e67477a3ce383aef383c8c1f2d1f363c9b6 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Sun Dec 25 22:01:16 2022 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Sun Dec 25 22:01:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3bd0e67
app-arch/upx: disable -Werror Closes: https://bugs.gentoo.org/887613 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> app-arch/upx/upx-4.0.1.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app-arch/upx/upx-4.0.1.ebuild b/app-arch/upx/upx-4.0.1.ebuild index 04a011030c35..1a9d20a8f767 100644 --- a/app-arch/upx/upx-4.0.1.ebuild +++ b/app-arch/upx/upx-4.0.1.ebuild @@ -17,6 +17,13 @@ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" RDEPEND="!app-arch/upx-bin" BDEPEND="app-arch/xz-utils[extra-filters]" +src_configure() { + local mycmakeargs=( + -DUPX_CONFIG_DISABLE_WERROR=ON + ) + cmake_src_configure +} + src_test() { # Don't run tests in parallel, #878977 cmake_src_test -j1
