diff options
author | Sam James <sam@gentoo.org> | 2022-10-28 03:32:30 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-10-28 03:33:15 +0100 |
commit | 7491c9f3070487863956428e3d58542cc2995df7 (patch) | |
tree | 8968c8dfc40ad892627e1d06fc973f7aac032a30 /app-text | |
parent | dev-util/gitlab-runner: keyword 15.5.0 for ~riscv (diff) | |
download | gentoo-7491c9f3070487863956428e3d58542cc2995df7.tar.gz gentoo-7491c9f3070487863956428e3d58542cc2995df7.tar.bz2 gentoo-7491c9f3070487863956428e3d58542cc2995df7.zip |
app-text/recode: don't pass -fanalyzer
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/recode/recode-3.7.12.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app-text/recode/recode-3.7.12.ebuild b/app-text/recode/recode-3.7.12.ebuild index b4f1454b52ae..73dc2c7e5900 100644 --- a/app-text/recode/recode-3.7.12.ebuild +++ b/app-text/recode/recode-3.7.12.ebuild @@ -47,8 +47,11 @@ src_configure() { # on solaris -lintl is needed to compile [[ ${CHOST} == *-solaris* ]] && append-libs "-lintl" - # --without-included-gettext means we always use system headers - # and library + # -fanalyzer substantially slows down the build and isn't useful for + # us. It's useful for upstream as it's static analysis, but it's not + # useful when just getting something built. + export gl_cv_warn_c__fanalyzer=no + econf \ $(use_enable nls) \ --disable-static |