diff options
author | Yixun Lan <dlan@gentoo.org> | 2021-01-14 16:18:57 +0800 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2021-01-14 16:20:02 +0800 |
commit | f3aeafa1ffe571ea5ef4b0ae80424f01ccb7b058 (patch) | |
tree | 548b647c3a2d8643ce6acf83251d7f0c26903749 /net-proxy | |
parent | app-backup/snapper: drop old (diff) | |
download | gentoo-f3aeafa1ffe571ea5ef4b0ae80424f01ccb7b058.tar.gz gentoo-f3aeafa1ffe571ea5ef4b0ae80424f01ccb7b058.tar.bz2 gentoo-f3aeafa1ffe571ea5ef4b0ae80424f01ccb7b058.zip |
net-proxy/shadowsocks-libev: fix -Werror issue
Closes: https://bugs.gentoo.org/765364
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.5.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.5.ebuild b/net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.5.ebuild index 5349e2ab8407..4829df5517b7 100644 --- a/net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.5.ebuild +++ b/net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -39,6 +39,9 @@ DEPEND="${RDEPEND} src_prepare() { sed -i -e 's|AC_CONFIG_FILES(\[libbloom/Makefile libcork/Makefile libipset/Makefile\])||' \ configure.ac || die + sed -i -e 's|-Werror||g' \ + configure.ac src/Makefile.am || die + default eautoreconf } |