diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2011-12-31 16:18:47 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2011-12-31 16:18:47 +0000 |
commit | ab7fd9aa10bbed6d6371255f980b50c468949f9b (patch) | |
tree | cd1cf4cb07d38216807ae7e2124c093a5da54481 /dev-libs/libreport | |
parent | Revbump. Don't use the deprecated $opts variable, bug 393657. (diff) | |
download | gentoo-2-ab7fd9aa10bbed6d6371255f980b50c468949f9b.tar.gz gentoo-2-ab7fd9aa10bbed6d6371255f980b50c468949f9b.tar.bz2 gentoo-2-ab7fd9aa10bbed6d6371255f980b50c468949f9b.zip |
Fix py-compile idiom for automake-1.11.2 compatibility (bug #396585, thanks to Michał Górny).
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libreport')
-rw-r--r-- | dev-libs/libreport/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libreport/libreport-2.0.7.ebuild | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/dev-libs/libreport/ChangeLog b/dev-libs/libreport/ChangeLog index 5a3235addab7..2dfa81c5fbdf 100644 --- a/dev-libs/libreport/ChangeLog +++ b/dev-libs/libreport/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libreport # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.2 2011/12/29 17:30:32 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/ChangeLog,v 1.3 2011/12/31 16:18:47 tetromino Exp $ + + 31 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org> + libreport-2.0.7.ebuild: + Fix py-compile idiom for automake-1.11.2 compatibility (bug #396585, thanks + to Michał Górny). 29 Dec 2011; Pacho Ramos <pacho@gentoo.org> libreport-2.0.7.ebuild: amd64 stable, bug 393007 diff --git a/dev-libs/libreport/libreport-2.0.7.ebuild b/dev-libs/libreport/libreport-2.0.7.ebuild index cc36b8680503..60d9f98d130c 100644 --- a/dev-libs/libreport/libreport-2.0.7.ebuild +++ b/dev-libs/libreport/libreport-2.0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.7.ebuild,v 1.2 2011/12/29 17:30:32 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libreport/libreport-2.0.7.ebuild,v 1.3 2011/12/31 16:18:47 tetromino Exp $ EAPI="4" PYTHON_DEPEND="2:2.6" @@ -65,7 +65,7 @@ src_prepare() { src/report-python/Makefile.* || die "sed failed" # disable pyc compiling - ln -sfn $(type -P true) py-compile + echo -e '#!'$(type -P sh)'\n:' > py-compile mkdir m4 eautoreconf |