[svn:mod_parrot] r388 - mod_parrot/branches/configure/config/init

[email protected] Fri, 25 Jul 2008 11:30:34 -0700 (PDT)
Newsgroups perl.cvs.mod_parrot
Message-ID <[email protected]>
Author: jhorwitz
Date: Fri Jul 25 11:30:33 2008
New Revision: 388

Modified:
   mod_parrot/branches/configure/config/init/defaults.pm

Log:
DEBUG should default to value of MP_DEBUG environment variable


Modified: mod_parrot/branches/configure/config/init/defaults.pm
==============================================================================
--- mod_parrot/branches/configure/config/init/defaults.pm	(original)
+++ mod_parrot/branches/configure/config/init/defaults.pm	Fri Jul 25 11:30:33 2008
@@ -34,8 +34,7 @@
     $conf->data->set(
         perl             => $^X,
 
-        debug            => ( $conf->options->get('debug') || $ENV{'MP_DEBUG'} )
-                            ? 1 : 0,
+        debug            => $conf->options->get('debug') || $ENV{'MP_DEBUG'},
         optimize         => '',
         verbose          => $conf->options->get('verbose'),