diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2014-10-15 17:51:03 +0000 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2014-10-15 17:51:03 +0000 |
commit | c281f384a654fb68e85e0728ec494a0ad1d56126 (patch) | |
tree | c3dee8afddd3d694ca0457e1a88e7974fc07ec69 /eclass/perl-app.eclass | |
parent | Add upstream metadata. (diff) | |
download | gentoo-2-c281f384a654fb68e85e0728ec494a0ad1d56126.tar.gz gentoo-2-c281f384a654fb68e85e0728ec494a0ad1d56126.tar.bz2 gentoo-2-c281f384a654fb68e85e0728ec494a0ad1d56126.zip |
Allow ebuild to override GENTOO_DEPEND_ON_PERL_SUBSLOT in perl-app.eclass if necessary
Diffstat (limited to 'eclass/perl-app.eclass')
-rw-r--r-- | eclass/perl-app.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/perl-app.eclass b/eclass/perl-app.eclass index 433cbda9f779..a0ce4f01d455 100644 --- a/eclass/perl-app.eclass +++ b/eclass/perl-app.eclass @@ -1,11 +1,12 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.13 2013/12/29 21:39:51 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.14 2014/10/15 17:51:03 axs Exp $ # Author: Michael Cummings <mcummings@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> -GENTOO_DEPEND_ON_PERL_SUBSLOT="no" +# If the ebuild doesn't override this, ensure we do not depend on the perl subslot value +: ${GENTOO_DEPEND_ON_PERL_SUBSLOT:="no"} inherit perl-module case "${EAPI:-0}" in |