diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2019-03-02 09:56:48 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-03-02 09:57:05 +0000 |
commit | 75a2b2b36067e3dc0dbd999f6a886d4999884072 (patch) | |
tree | 79aaf6d8a236e9390f309f4cbea1552b21ae1c24 /sys-process/criu | |
parent | sci-libs/libmed-4.0.0: bump (bug #678824) (diff) | |
download | gentoo-75a2b2b36067e3dc0dbd999f6a886d4999884072.tar.gz gentoo-75a2b2b36067e3dc0dbd999f6a886d4999884072.tar.bz2 gentoo-75a2b2b36067e3dc0dbd999f6a886d4999884072.zip |
sys-process/criu: disable -Werror, bug #679140
gcc-8 detected new warnings and broke the build:
compel/include/uapi/compel/asm/fpu.h:89:1: error:
alignment 1 of ‘struct xsave_struct_ia32’ is less than 16
[-Werror=packed-not-aligned]
The change disables -Werror as we do in unstable ebuilds.
Reported-by: Thomas Beutin
Closes: https://bugs.gentoo.org/679140
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sys-process/criu')
-rw-r--r-- | sys-process/criu/criu-3.6.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys-process/criu/criu-3.6.ebuild b/sys-process/criu/criu-3.6.ebuild index 92f3e8636056..5e41c3a81555 100644 --- a/sys-process/criu/criu-3.6.ebuild +++ b/sys-process/criu/criu-3.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -97,6 +97,7 @@ src_install() { LOGROTATEDIR="${EPREFIX}"/etc/logrotate.d \ DESTDIR="${D}" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ + WERROR=0 \ install dodoc CREDITS README.md |