diff options
author | Andreas K. Huettel (dilfridge) <dilfridge@gentoo.org> | 2015-11-28 22:20:07 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2015-12-19 14:17:08 +0100 |
commit | 317eaf7fa745c89f67a7d362b35c503f4d84c21c (patch) | |
tree | 1ba69643b0438b138e147afee9132f3b0f9a0004 /eclass/perl-module.eclass | |
parent | perl-module.eclass: Allow EAPI=6, ban PERL_EXPORT_PHASE_FUNCTIONS, GENTOO_DEP... (diff) | |
download | gentoo-317eaf7fa745c89f67a7d362b35c503f4d84c21c.tar.gz gentoo-317eaf7fa745c89f67a7d362b35c503f4d84c21c.tar.bz2 gentoo-317eaf7fa745c89f67a7d362b35c503f4d84c21c.zip |
perl-module.eclass: Just go ahead when calling configure twice in EAPI=6
Diffstat (limited to 'eclass/perl-module.eclass')
-rw-r--r-- | eclass/perl-module.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index f380730d871c..bc654a915abc 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -139,7 +139,9 @@ perl-module_src_prepare() { perl-module_src_configure() { debug-print-function $FUNCNAME "$@" - [[ ${SRC_PREP} = yes ]] && return 0 + if [[ ${EAPI:-0} == 5 && ${SRC_PREP} == yes ]]; then + return 0 + fi SRC_PREP="yes" perl_check_env |