Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
tove 09/03/11 06:36:45
Modified: perl-module.eclass
Log:
Set mytargets depending on CATEGORY (#262037)
Revision Changes Path
1.114 eclass/perl-module.eclass
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/perl-module.eclass?rev=1.114&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/perl-module.eclass?rev=1.114&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/perl-module.eclass?r1=1.113&r2=1.114
Index: perl-module.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- perl-module.eclass 6 Mar 2009 11:42:41 -0000 1.113
+++ perl-module.eclass 11 Mar 2009 06:36:45 -0000 1.114
@@ -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.113 2009/03/06 11:42:41 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.114 2009/03/11 06:36:45 tove Exp $
#
# Author: Seemant Kulleen <seemant@g.o>
@@ -140,7 +140,12 @@
local f
${perlinfo_done} || perlinfo
- [[ -z ${mytargets} ]] && mytargets="pure_install"
+ if [[ -z ${mytargets} ]] ; then
+ case "${CATEGORY}" in
+ dev-perl|perl-core) mytargets="pure_install" ;;
+ *) mytargets="install" ;;
+ esac
+ fi
if [[ -f Build ]] ; then
./Build ${mytargets} \
|
|