summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cummings <mcummings@gentoo.org>2003-07-27 14:46:02 +0000
committerMichael Cummings <mcummings@gentoo.org>2003-07-27 14:46:02 +0000
commit9da222bf01314f9dd7f683cb886e1adc4b07dd3f (patch)
tree33ba7343ff573e9cc63ffaee102f942d61ed535e /eclass/perl-module.eclass
parentinitial commit (diff)
downloadgentoo-2-9da222bf01314f9dd7f683cb886e1adc4b07dd3f.tar.gz
gentoo-2-9da222bf01314f9dd7f683cb886e1adc4b07dd3f.tar.bz2
gentoo-2-9da222bf01314f9dd7f683cb886e1adc4b07dd3f.zip
Changed order for perl Makefile.PL line - INSTALLDIRS needed to be last
or it disrupted ebuilds looking at include libraries, such as Net-SSLeay. I've tested with it at the end with makemaker and it is still honored correctly, and ssleay among others now compile correctly again.
Diffstat (limited to 'eclass/perl-module.eclass')
-rw-r--r--eclass/perl-module.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass
index be0186eb0668..24884ff2568d 100644
--- a/eclass/perl-module.eclass
+++ b/eclass/perl-module.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.48 2003/07/25 21:08:44 rac Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.49 2003/07/27 14:46:02 mcummings Exp $
#
# Author: Seemant Kulleen <seemant@gentoo.org>
#
@@ -28,8 +28,8 @@ perl-module_src_prep() {
if [ "${style}" == "builder" ]; then
perl ${S}/Build.PL installdirs=vendor destdir=${D}
else
- perl Makefile.PL INSTALLDIRS=vendor ${myconf} \
- PREFIX=${D}/usr
+ perl Makefile.PL ${myconf} \
+ PREFIX=${D}/usr INSTALLDIRS=vendor
fi
}