diff options
author | Nathan Phillip Brink <binki@gentoo.org> | 2012-06-10 03:26:38 +0000 |
---|---|---|
committer | Nathan Phillip Brink <binki@gentoo.org> | 2012-06-10 03:26:38 +0000 |
commit | b2595bba5c4f7a1b3abc33f4f79ea5354baa6ebb (patch) | |
tree | 7a2d916f847ebedc108583d2959da2e4a2bb427c /dev-libs/check | |
parent | Bump, see http://www.winehq.org/announce/1.5.6 for the announcement. Optional... (diff) | |
download | gentoo-2-b2595bba5c4f7a1b3abc33f4f79ea5354baa6ebb.tar.gz gentoo-2-b2595bba5c4f7a1b3abc33f4f79ea5354baa6ebb.tar.bz2 gentoo-2-b2595bba5c4f7a1b3abc33f4f79ea5354baa6ebb.zip |
Fix compilation with automake-1.12 broken by automake's -Werror switch (bug #420373 by hwoarang).
(Portage version: 2.2.0_alpha109-r1/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/check')
-rw-r--r-- | dev-libs/check/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/check/check-0.9.8-r1.ebuild | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/dev-libs/check/ChangeLog b/dev-libs/check/ChangeLog index af023c27a1da..aee2e8c679be 100644 --- a/dev-libs/check/ChangeLog +++ b/dev-libs/check/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/check # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.78 2012/06/10 03:07:18 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.79 2012/06/10 03:26:38 binki Exp $ + + 10 Jun 2012; Nathan Phillip Brink <binki@gentoo.org> check-0.9.8-r1.ebuild: + Fix compilation with automake-1.12 broken by automake's -Werror switch (bug + #420373 by hwoarang). 10 Jun 2012; Nathan Phillip Brink <binki@gentoo.org> -check-0.9.8.ebuild: Drop old revision of check-0.9.8 as bug #392773 is fixed. diff --git a/dev-libs/check/check-0.9.8-r1.ebuild b/dev-libs/check/check-0.9.8-r1.ebuild index 22741562bdc2..078f3ea0e46d 100644 --- a/dev-libs/check/check-0.9.8-r1.ebuild +++ b/dev-libs/check/check-0.9.8-r1.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/dev-libs/check/check-0.9.8-r1.ebuild,v 1.10 2012/04/26 22:22:04 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.8-r1.ebuild,v 1.11 2012/06/10 03:26:38 binki Exp $ EAPI=4 inherit autotools autotools-utils eutils @@ -28,6 +28,9 @@ src_prepare() { # example breaks USE=subunit. rm src/check.h || die + # Fix automake warnings being treated as errors, bug #420373 + sed -i -e s/-Werror// configure.ac || die + eautoreconf } |