diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-06-14 18:33:22 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-06-14 18:33:22 +0000 |
commit | a022f413521f735a64111357c2356d038bcada63 (patch) | |
tree | 70d56c8518c8770488dfdb5c5c5657a9709b09d3 /x11-libs/libfm/libfm-9999.ebuild | |
parent | Fix from upstream to for strtok on x32 #420951. (diff) | |
download | gentoo-2-a022f413521f735a64111357c2356d038bcada63.tar.gz gentoo-2-a022f413521f735a64111357c2356d038bcada63.tar.bz2 gentoo-2-a022f413521f735a64111357c2356d038bcada63.zip |
Drop -Werror due to new automake-1.12. Bug #421101
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/libfm/libfm-9999.ebuild')
-rw-r--r-- | x11-libs/libfm/libfm-9999.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/x11-libs/libfm/libfm-9999.ebuild b/x11-libs/libfm/libfm-9999.ebuild index 43bac13f7c57..88576415ed4b 100644 --- a/x11-libs/libfm/libfm-9999.ebuild +++ b/x11-libs/libfm/libfm-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.22 2012/05/05 03:52:24 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.23 2012/06/14 18:33:22 hwoarang Exp $ EAPI=3 @@ -51,6 +51,8 @@ src_prepare() { myvalac="$(type -p valac-${myvalaver})" [[ -x "${myvalac}" ]] || die "Vala compiler ${myvalac} not found" export VALAC=${myvalac} + #Remove -Werror for automake-1.12. Bug #421101 + sed -i "s:-Werror::" configure.ac || die eautoreconf } |