Gentoo Archives: gentoo-commits

From: Christoph Junghans <junghans@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ispc/
Date: Fri, 29 Sep 2017 22:40:55
Message-Id: 1506724843.d8eed951c484758c7744a261c7570e3729ad4204.junghans@gentoo
1 commit: d8eed951c484758c7744a261c7570e3729ad4204
2 Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 29 22:39:58 2017 +0000
4 Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 29 22:40:43 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8eed951
7
8 dev-lang/ispc: remove -Werror (bug #604732, #595254)
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.1
11
12 dev-lang/ispc/ispc-1.9.1.ebuild | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-lang/ispc/ispc-1.9.1.ebuild b/dev-lang/ispc/ispc-1.9.1.ebuild
16 index 3c7b498b691..72e2ab831c8 100644
17 --- a/dev-lang/ispc/ispc-1.9.1.ebuild
18 +++ b/dev-lang/ispc/ispc-1.9.1.ebuild
19 @@ -35,7 +35,8 @@ DEPEND="
20 "
21
22 src_compile() {
23 - sed -i '/^\t@/s/@//' Makefile || die #make all slient commands ("@") verbose
24 + #make all slient commands ("@") verbose and remove -Werror (ispc/ispc#1295)
25 + sed -e '/^\t@/s/@//' -e 's/-Werror//' -i Makefile || die
26 emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
27 }