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 | 6e7f331cb75837a7fd6aad842c6f2a39c74b3439 (patch) | |
tree | f4da8dd185407a98156b7e782ed45cdf95c5b238 /eclass/perl-module.eclass | |
parent | initial commit (diff) | |
download | historical-6e7f331cb75837a7fd6aad842c6f2a39c74b3439.tar.gz historical-6e7f331cb75837a7fd6aad842c6f2a39c74b3439.tar.bz2 historical-6e7f331cb75837a7fd6aad842c6f2a39c74b3439.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 } |