Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/lxc/
Date: Mon, 29 May 2017 13:46:10
Message-Id: 1496065553.fa4a0054f7ea1bc85c9ea00e9ad9a95ea536ead0.slyfox@gentoo
1 commit: fa4a0054f7ea1bc85c9ea00e9ad9a95ea536ead0
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 29 10:36:33 2017 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Mon May 29 13:45:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa4a0054
7
8 app-emulation/lxc: disable -Werror, fixes build failure on gcc-7.1
9
10 On gcc-7.1 build fails as a result of both more warnings from gcc
11 (implicit fallthrough) and a format truncation gcc bug:
12 https://gcc.gnu.org/PR78969#c4
13
14 Package-Manager: Portage-2.3.6, Repoman-2.3.2
15
16 app-emulation/lxc/lxc-2.0.7.ebuild | 1 +
17 1 file changed, 1 insertion(+)
18
19 diff --git a/app-emulation/lxc/lxc-2.0.7.ebuild b/app-emulation/lxc/lxc-2.0.7.ebuild
20 index 76107348b4d..4266cc4ebf0 100644
21 --- a/app-emulation/lxc/lxc-2.0.7.ebuild
22 +++ b/app-emulation/lxc/lxc-2.0.7.ebuild
23 @@ -132,6 +132,7 @@ src_configure() {
24 --with-distro=gentoo \
25 --with-runtime-path=/run \
26 --disable-apparmor \
27 + --disable-werror \
28 $(use_enable cgmanager) \
29 $(use_enable doc) \
30 $(use_enable examples) \