[Jifty-commit] r5605 - jifty/trunk

Jifty commits jifty-commit at lists.jifty.org
Mon Jul 28 18:32:48 EDT 2008


Author: clkao
Date: Mon Jul 28 18:32:48 2008
New Revision: 5605

Modified:
   jifty/trunk/Makefile.PL

Log:
allow plugin list to be passed in for Makefile.PL.

Modified: jifty/trunk/Makefile.PL
==============================================================================
--- jifty/trunk/Makefile.PL	(original)
+++ jifty/trunk/Makefile.PL	Mon Jul 28 18:32:48 2008
@@ -208,7 +208,7 @@
 install_script('bin/jifty');
 install_share;
 
-my @plugins = qw(TabView);
+my @plugins = defined $ENV{JIFTY_PLUGINS} ? split(/ /, $ENV{JIFTY_PLUGINS}) : qw(TabView);
 
 # Test all of our sub-dist tests too
 tests(join(' ', qw(t/*.t t/*/*.t t/*/*/*.t t/*/*/*/*.t), map { "plugins/$_/t/*.t"} @plugins));


More information about the Jifty-commit mailing list