diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-07-14 16:34:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-07-14 16:34:19 +0000 |
commit | a045d66af157e0581e7a1d1f6b01847c915d2743 (patch) | |
tree | 6d506dcf5fa563c1b7d6ce1361fcb83058296cda /games-action | |
parent | Improve comments. (diff) | |
download | gentoo-2-a045d66af157e0581e7a1d1f6b01847c915d2743.tar.gz gentoo-2-a045d66af157e0581e7a1d1f6b01847c915d2743.tar.bz2 gentoo-2-a045d66af157e0581e7a1d1f6b01847c915d2743.zip |
fix install with newer autotools (bug #328021)
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/supertuxkart/ChangeLog | 6 | ||||
-rw-r--r-- | games-action/supertuxkart/supertuxkart-0.6.2.ebuild | 7 |
2 files changed, 11 insertions, 2 deletions
diff --git a/games-action/supertuxkart/ChangeLog b/games-action/supertuxkart/ChangeLog index a50c1bf6c84b..ee1348b4e66a 100644 --- a/games-action/supertuxkart/ChangeLog +++ b/games-action/supertuxkart/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/supertuxkart # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.17 2010/01/03 21:57:03 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.18 2010/07/14 16:34:19 mr_bones_ Exp $ + + 14 Jul 2010; Michael Sterrett <mr_bones_@gentoo.org> + supertuxkart-0.6.2.ebuild: + fix install with newer autotools (bug #328021) 03 Jan 2010; Michael Sterrett <mr_bones_@gentoo.org> supertuxkart-0.6.2.ebuild: diff --git a/games-action/supertuxkart/supertuxkart-0.6.2.ebuild b/games-action/supertuxkart/supertuxkart-0.6.2.ebuild index e46e11f9d35d..cdd958b049b3 100644 --- a/games-action/supertuxkart/supertuxkart-0.6.2.ebuild +++ b/games-action/supertuxkart/supertuxkart-0.6.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.2.ebuild,v 1.5 2010/01/03 21:57:03 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.2.ebuild,v 1.6 2010/07/14 16:34:19 mr_bones_ Exp $ EAPI=2 inherit autotools eutils games @@ -52,6 +52,11 @@ src_prepare() { -e '/AM_CPPFLAGS/s:/games::' \ src/Makefile.am \ || die "sed failed" + # bug #328021 + sed -i \ + -e '13d' \ + data/Makefile.am \ + || die "sed failed" rm -rf src/enet eautoreconf } |