You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by st...@apache.org on 2005/01/13 04:44:23 UTC

svn commit: r125029 - /httpd/apreq/trunk/Makefile.PL

Author: stas
Date: Wed Jan 12 19:44:22 2005
New Revision: 125029

URL: http://svn.apache.org/viewcvs?view=rev&rev=125029
Log:
avoid code dups

Modified:
   httpd/apreq/trunk/Makefile.PL

Modified: httpd/apreq/trunk/Makefile.PL
Url: http://svn.apache.org/viewcvs/httpd/apreq/trunk/Makefile.PL?view=diff&rev=125029&p1=httpd/apreq/trunk/Makefile.PL&r1=125028&p2=httpd/apreq/trunk/Makefile.PL&r2=125029
==============================================================================
--- httpd/apreq/trunk/Makefile.PL	(original)
+++ httpd/apreq/trunk/Makefile.PL	Wed Jan 12 19:44:22 2005
@@ -49,6 +49,7 @@
         if exists $opts{apxs} and not exists $opts{"with-apache2-apxs"};
 
     $opts .= join " ", map {"--$_=$opts{$_}"} keys %opts;
-    print "./configure $opts\n";
-    exec  "./configure $opts";
+    my $cmd = "./configure $opts";
+    print "$cmd\n";
+    exec  $cmd;
 }