diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2011-12-31 21:24:32 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2011-12-31 21:24:32 +0000 |
commit | 34ad20f03117191efc5b760eed197144f222e7b5 (patch) | |
tree | 94bec7785b2d69d6221756076d495cc6fce4091b /app-cdr/gcdemu | |
parent | Revbump. Don't use the deprecated $opts variable, bug 395631. (diff) | |
download | gentoo-2-34ad20f03117191efc5b760eed197144f222e7b5.tar.gz gentoo-2-34ad20f03117191efc5b760eed197144f222e7b5.tar.bz2 gentoo-2-34ad20f03117191efc5b760eed197144f222e7b5.zip |
Fix py-compile idiom for automake-1.11.2 compatibility (bug #396585).
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'app-cdr/gcdemu')
-rw-r--r-- | app-cdr/gcdemu/ChangeLog | 5 | ||||
-rw-r--r-- | app-cdr/gcdemu/gcdemu-1.3.0.ebuild | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/app-cdr/gcdemu/ChangeLog b/app-cdr/gcdemu/ChangeLog index c012d7cf070f..92cdf0f5624d 100644 --- a/app-cdr/gcdemu/ChangeLog +++ b/app-cdr/gcdemu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-cdr/gcdemu # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/gcdemu/ChangeLog,v 1.16 2011/11/23 10:14:58 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/gcdemu/ChangeLog,v 1.17 2011/12/31 21:24:32 tetromino Exp $ + + 31 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org> gcdemu-1.3.0.ebuild: + Fix py-compile idiom for automake-1.11.2 compatibility (bug #396585). *gcdemu-1.4.0 (23 Nov 2011) diff --git a/app-cdr/gcdemu/gcdemu-1.3.0.ebuild b/app-cdr/gcdemu/gcdemu-1.3.0.ebuild index 47497a9c16cc..001b20e9fdb1 100644 --- a/app-cdr/gcdemu/gcdemu-1.3.0.ebuild +++ b/app-cdr/gcdemu/gcdemu-1.3.0.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/app-cdr/gcdemu/gcdemu-1.3.0.ebuild,v 1.5 2011/11/23 10:14:58 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/gcdemu/gcdemu-1.3.0.ebuild,v 1.6 2011/12/31 21:24:32 tetromino Exp $ EAPI="3" @@ -40,8 +40,7 @@ pkg_setup() { src_prepare() { # disable compilation of python modules - rm py-compile && \ - ln -s "$(type -P true)" py-compile || die + echo '#!/bin/sh' > py-compile || die python_convert_shebangs 2 src/gcdemu } |