diff options
author | Michael Cummings <mcummings@gentoo.org> | 2006-05-05 13:58:54 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2006-05-05 13:58:54 +0000 |
commit | 0bcf37cbea7ea4de70582c84a59d5ca7a3bbbe92 (patch) | |
tree | 121270ccce2ecd8d8b0e5ffabead453c24f7023a /eclass | |
parent | Initial import of ebuild written by me. (diff) | |
download | gentoo-2-0bcf37cbea7ea4de70582c84a59d5ca7a3bbbe92.tar.gz gentoo-2-0bcf37cbea7ea4de70582c84a59d5ca7a3bbbe92.tar.bz2 gentoo-2-0bcf37cbea7ea4de70582c84a59d5ca7a3bbbe92.zip |
Updated to include disable for extutils-autoinstall, submitted to me by a user - thanks dwc!!
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/perl-app.eclass | 4 | ||||
-rw-r--r-- | eclass/perl-module.eclass | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/eclass/perl-app.eclass b/eclass/perl-app.eclass index d4a911c9c3c0..4f5e9e12fb8a 100644 --- a/eclass/perl-app.eclass +++ b/eclass/perl-app.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.4 2006/04/03 16:50:25 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.5 2006/05/05 13:58:54 mcummings Exp $ # # Author: Michael Cummings <mcummings@gentoo.org> @@ -19,6 +19,8 @@ perl-app_src_prep() { perlinfo export PERL_MM_USE_DEFAULT=1 + # Disable ExtUtils::AutoInstall from prompting + export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" SRC_PREP="yes" diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 0ffbab624061..23dc951a8f2c 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.89 2006/05/02 02:14:13 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.90 2006/05/05 13:58:54 mcummings Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> @@ -92,6 +92,8 @@ perl-module_src_prep() { perlinfo export PERL_MM_USE_DEFAULT=1 + # Disable ExtUtils::AutoInstall from prompting + export PERL_EXTUTILS_AUTOINSTALL="--skipdeps" SRC_PREP="yes" |