diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-06-18 19:28:29 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-06-18 19:28:29 +0000 |
commit | 425ef64cb4eb27bb088620d57612b61eca08ae41 (patch) | |
tree | 32093edc6e4fe90c332e8c7b79d44ffeacbec98e /x11-libs/libfm | |
parent | Initial commit (diff) | |
download | gentoo-2-425ef64cb4eb27bb088620d57612b61eca08ae41.tar.gz gentoo-2-425ef64cb4eb27bb088620d57612b61eca08ae41.tar.bz2 gentoo-2-425ef64cb4eb27bb088620d57612b61eca08ae41.zip |
Backport automake-1.12 fix from bug #421101
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/libfm')
-rw-r--r-- | x11-libs/libfm/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/libfm/libfm-0.1.17.ebuild | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/x11-libs/libfm/ChangeLog b/x11-libs/libfm/ChangeLog index 5326cad429a7..4a6309a7eda9 100644 --- a/x11-libs/libfm/ChangeLog +++ b/x11-libs/libfm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-libs/libfm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.66 2012/06/14 18:33:22 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.67 2012/06/18 19:28:29 hwoarang Exp $ + + 18 Jun 2012; Markos Chandras <hwoarang@gentoo.org> libfm-0.1.17.ebuild: + Backport automake-1.12 fix from bug #421101 14 Jun 2012; Markos Chandras <hwoarang@gentoo.org> libfm-9999.ebuild: Drop -Werror due to new automake-1.12. Bug #421101 diff --git a/x11-libs/libfm/libfm-0.1.17.ebuild b/x11-libs/libfm/libfm-0.1.17.ebuild index 7273f0b7aa33..b4f80ac3835b 100644 --- a/x11-libs/libfm/libfm-0.1.17.ebuild +++ b/x11-libs/libfm/libfm-0.1.17.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-0.1.17.ebuild,v 1.9 2012/05/05 03:52:24 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-0.1.17.ebuild,v 1.10 2012/06/18 19:28:29 hwoarang Exp $ EAPI=4 @@ -32,6 +32,8 @@ src_prepare() { sed -ie '/SUBDIRS=/s#docs##' "${S}"/Makefile.am || die "sed failed" sed -i -e '/^[[:space:]]*docs/d' -e "s:-O0::" -e "/-DG_ENABLE_DEBUG/s: -g::" \ configure.ac || die "sed failed" + #Remove -Werror for automake-1.12. Bug #421101 + sed -i "s:-Werror::" configure.ac || die eautoreconf } |