commit: d8eed951c484758c7744a261c7570e3729ad4204
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 29 22:39:58 2017 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Fri Sep 29 22:40:43 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8eed951
dev-lang/ispc: remove -Werror (bug #604732, #595254)
Package-Manager: Portage-2.3.8, Repoman-2.3.1
dev-lang/ispc/ispc-1.9.1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-lang/ispc/ispc-1.9.1.ebuild b/dev-lang/ispc/ispc-1.9.1.ebuild
index 3c7b498b691..72e2ab831c8 100644
--- a/dev-lang/ispc/ispc-1.9.1.ebuild
+++ b/dev-lang/ispc/ispc-1.9.1.ebuild
@@ -35,7 +35,8 @@ DEPEND="
"
src_compile() {
- sed -i '/^\t@/s/@//' Makefile || die #make all slient commands ("@")
verbose
+ #make all slient commands ("@") verbose and remove -Werror
(ispc/ispc#1295)
+ sed -e '/^\t@/s/@//' -e 's/-Werror//' -i Makefile || die
emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)"
CPP="$(tc-getCPP)"
}