diff options
author | John Mylchreest <johnm@gentoo.org> | 2003-09-25 09:02:19 +0000 |
---|---|---|
committer | John Mylchreest <johnm@gentoo.org> | 2003-09-25 09:02:19 +0000 |
commit | 1f94187be823f2e6284346db1865e04c90650c28 (patch) | |
tree | 77931f84fcd664c78ac0fbbc3c7607c249cbf9d0 /eclass/perl-module.eclass | |
parent | cleaning out old ebuilds (diff) | |
download | historical-1f94187be823f2e6284346db1865e04c90650c28.tar.gz historical-1f94187be823f2e6284346db1865e04c90650c28.tar.bz2 historical-1f94187be823f2e6284346db1865e04c90650c28.zip |
Fixing borkage on non-MakeMaker-6.11 installs causing sandbox violation
Diffstat (limited to 'eclass/perl-module.eclass')
-rw-r--r-- | eclass/perl-module.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 3b3725b38d1e..195e9e862738 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.51 2003/09/24 20:28:11 rac Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.52 2003/09/25 09:02:19 johnm Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # @@ -36,7 +36,7 @@ perl-module_src_prep() { PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} else perl Makefile.PL ${myconf} \ - PREFIX=/usr INSTALLDIRS=vendor + PREFIX=${D}/usr INSTALLDIRS=vendor fi fi |