diff options
author | Michael Cummings <mcummings@gentoo.org> | 2005-05-14 14:06:39 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2005-05-14 14:06:39 +0000 |
commit | f9b32b4924a00870ee21ffff4702204fd3fe6969 (patch) | |
tree | 9fbedf6dd2e3c82cd93bfe914567e82a432a1d3a /eclass | |
parent | Stable on hppa. (diff) | |
download | historical-f9b32b4924a00870ee21ffff4702204fd3fe6969.tar.gz historical-f9b32b4924a00870ee21ffff4702204fd3fe6969.tar.bz2 historical-f9b32b4924a00870ee21ffff4702204fd3fe6969.zip |
added perl Build build line to make block - should capture those module-builds that use the build invocation for a make
Diffstat (limited to '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 c5c604096d37..bcc44cf895b4 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.68 2005/04/29 00:54:37 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.69 2005/05/14 14:06:39 mcummings Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> @@ -105,6 +105,8 @@ perl-module_src_compile() { [ "${SRC_PREP}" != "yes" ] && perl-module_src_prep if [ -z ${BUILDER_VER} ]; then make ${mymake} || die "compilation failed" + else + perl ${S}/Build build fi } |