diff options
author | Jeroen Roovers <jer@gentoo.org> | 2020-08-19 15:53:46 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2020-08-19 15:57:11 +0200 |
commit | 0e2c5b910bf3067d91d357a68d5b7a185a7a32be (patch) | |
tree | 1f94292cd7820fe7f6308c4340f9e3f3fb3967da | |
parent | net-proxy/privoxy: fix build without native symlinks and custom STRIP (diff) | |
download | gentoo-0e2c5b910bf3067d91d357a68d5b7a185a7a32be.tar.gz gentoo-0e2c5b910bf3067d91d357a68d5b7a185a7a32be.tar.bz2 gentoo-0e2c5b910bf3067d91d357a68d5b7a185a7a32be.zip |
app-text/pinfo: Filter out -Werror
Package-Manager: Portage-3.0.3, Repoman-3.0.0
Closes: https://bugs.gentoo.org/692366
Closes: https://bugs.gentoo.org/722414
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
-rw-r--r-- | app-text/pinfo/pinfo-0.6.13.ebuild | 3 | ||||
-rw-r--r-- | app-text/pinfo/pinfo-99999.ebuild | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/app-text/pinfo/pinfo-0.6.13.ebuild b/app-text/pinfo/pinfo-0.6.13.ebuild index 1edae9c02d3a..65a73c599ed0 100644 --- a/app-text/pinfo/pinfo-0.6.13.ebuild +++ b/app-text/pinfo/pinfo-0.6.13.ebuild @@ -34,6 +34,9 @@ PATCHES=( src_prepare() { default + + sed -i -e 's| -Werror||g' configure.ac || die + eautoreconf } diff --git a/app-text/pinfo/pinfo-99999.ebuild b/app-text/pinfo/pinfo-99999.ebuild index 697760bc7fca..94bcef91cbb1 100644 --- a/app-text/pinfo/pinfo-99999.ebuild +++ b/app-text/pinfo/pinfo-99999.ebuild @@ -29,11 +29,13 @@ DEPEND=" PATCHES=( "${FILESDIR}"/${PN}-0.6.9-GROFF_NO_SGR.patch "${FILESDIR}"/${PN}-0.6.9-lzma-xz.patch - "${FILESDIR}"/${PN}-0.6.13-fno-common.patch ) src_prepare() { default + + sed -i -e 's| -Werror||g' configure.ac || die + eautoreconf } |