diff options
author | Michael Cummings <mcummings@gentoo.org> | 2006-12-09 14:34:01 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2006-12-09 14:34:01 +0000 |
commit | 5b38fcfa29285c9424d4cf41715eaa9e999243ea (patch) | |
tree | baf8588685fedeac2c15ffbd7dd7a70707a520f6 /eclass | |
parent | Guess I'm too slow: 2.6.19-r14 (diff) | |
download | historical-5b38fcfa29285c9424d4cf41715eaa9e999243ea.tar.gz historical-5b38fcfa29285c9424d4cf41715eaa9e999243ea.tar.bz2 historical-5b38fcfa29285c9424d4cf41715eaa9e999243ea.zip |
For bug 157156, fixlocalpod addition
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/perl-app.eclass | 3 | ||||
-rw-r--r-- | eclass/perl-module.eclass | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/eclass/perl-app.eclass b/eclass/perl-app.eclass index 01ff38dd2cd4..6507a02876b5 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.9 2006/08/28 20:22:20 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.10 2006/12/09 14:34:01 mcummings Exp $ # # Author: Michael Cummings <mcummings@gentoo.org> @@ -48,5 +48,6 @@ perl-app_src_compile() { elif [ -f Build ]; then perl Build build || die "compilation failed" fi + fixlocalpod } diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 1c946febf6d0..21cf8678d4a6 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.103 2006/10/14 20:27:21 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.104 2006/12/09 14:34:01 mcummings Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> @@ -139,6 +139,7 @@ perl-module_src_compile() { elif [ -f Build ]; then perl Build build || die "compilation failed" fi + fixlocalpod } |