diff options
author | Sam James <sam@gentoo.org> | 2021-03-19 10:41:12 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-19 10:41:22 +0000 |
commit | c25462475e15f43bf082d698a580c3e44153b460 (patch) | |
tree | 3d6525ce84c80a06f466cfacfac8ed7e354e5275 /media-gfx/frogr | |
parent | dev-libs/libindicator: stop using -Werror (diff) | |
download | gentoo-c25462475e15f43bf082d698a580c3e44153b460.tar.gz gentoo-c25462475e15f43bf082d698a580c3e44153b460.tar.bz2 gentoo-c25462475e15f43bf082d698a580c3e44153b460.zip |
media-gfx/frogr: stop using -Werror
Closes: https://bugs.gentoo.org/714132
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/frogr')
-rw-r--r-- | media-gfx/frogr/frogr-1.5.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/media-gfx/frogr/frogr-1.5.ebuild b/media-gfx/frogr/frogr-1.5.ebuild index 2cb753483f16..c10fdc5a79c7 100644 --- a/media-gfx/frogr/frogr-1.5.ebuild +++ b/media-gfx/frogr/frogr-1.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -30,7 +30,10 @@ DEPEND="${RDEPEND} # TODO add a useflag for enable-video or header-bar??? src_configure() { - local emesonargs=() + local emesonargs=( + # bug #714132 + -Dwerror=false + ) meson_src_configure } |