diff options
author | Michael Cummings <mcummings@gentoo.org> | 2003-07-27 14:46:02 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2003-07-27 14:46:02 +0000 |
commit | 9da222bf01314f9dd7f683cb886e1adc4b07dd3f (patch) | |
tree | 33ba7343ff573e9cc63ffaee102f942d61ed535e /eclass/perl-module.eclass | |
parent | initial commit (diff) | |
download | gentoo-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.eclass | 6 |
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 } |