diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-06-10 17:46:46 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-06-10 17:48:16 +0200 |
commit | 1a315fb23a3cc485de21a4d9558fe044f680f31f (patch) | |
tree | 5e546e714f8cf67a062c2c7620d87d73093c5278 /app-arch/deltarpm | |
parent | net-wireless/wireless-regdb: version bump, cleanup old (diff) | |
download | gentoo-1a315fb23a3cc485de21a4d9558fe044f680f31f.tar.gz gentoo-1a315fb23a3cc485de21a4d9558fe044f680f31f.tar.bz2 gentoo-1a315fb23a3cc485de21a4d9558fe044f680f31f.zip |
app-arch/deltarpm: Fix implicit python3 use, #568094
Diffstat (limited to 'app-arch/deltarpm')
-rw-r--r-- | app-arch/deltarpm/deltarpm-3.6_pre20110223-r2.ebuild (renamed from app-arch/deltarpm/deltarpm-3.6_pre20110223-r1.ebuild) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app-arch/deltarpm/deltarpm-3.6_pre20110223-r1.ebuild b/app-arch/deltarpm/deltarpm-3.6_pre20110223-r2.ebuild index 082f90e9348d..4557c6c2a4da 100644 --- a/app-arch/deltarpm/deltarpm-3.6_pre20110223-r1.ebuild +++ b/app-arch/deltarpm/deltarpm-3.6_pre20110223-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -35,9 +35,11 @@ pkg_setup() { } src_prepare() { + # disable implicit python3 use, #568094 sed -i \ -e '/^prefix/s:/local::' \ -e '/^mandir/s:/man:/share/man:' \ + -e '/for/s:python3::' \ Makefile || die epatch "${FILESDIR}/3.6_pre20110223-build.patch" } |