[svn:mod_parrot] r357 - mod_parrot/trunk

[email protected] Thu, 10 Jul 2008 09:17:49 -0700 (PDT)
Newsgroups perl.cvs.mod_parrot
Message-ID <[email protected]>
Author: jhorwitz
Date: Thu Jul 10 09:17:49 2008
New Revision: 357

Modified:
   mod_parrot/trunk/Configure.pl

Log:
fix to work with new parrot_config binary


Modified: mod_parrot/trunk/Configure.pl
==============================================================================
--- mod_parrot/trunk/Configure.pl	(original)
+++ mod_parrot/trunk/Configure.pl	Thu Jul 10 09:17:49 2008
@@ -41,7 +41,7 @@
 sub parrot_config
 {
     my $config = shift;
-    my $value = `cd $parrot_build_dir; ./parrot parrot-config $config`;
+    my $value = `$parrot_build_dir/parrot_config $config`;
     chomp($value);
     return $value;
 }