You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2012/10/01 00:43:29 UTC

svn commit: r1392122 - /httpd/httpd/trunk/modules/config5.m4

Author: trawick
Date: Sun Sep 30 22:43:29 2012
New Revision: 1392122

URL: http://svn.apache.org/viewvc?rev=1392122&view=rev
Log:
fix bug in r1392120: replace ALL commas

Modified:
    httpd/httpd/trunk/modules/config5.m4

Modified: httpd/httpd/trunk/modules/config5.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/config5.m4?rev=1392122&r1=1392121&r2=1392122&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/config5.m4 (original)
+++ httpd/httpd/trunk/modules/config5.m4 Sun Sep 30 22:43:29 2012
@@ -3,7 +3,7 @@ AC_ARG_WITH(module,
   APACHE_HELP_STRING(--with-module=module-type:module-file,
                      Enable module-file in the modules/<module-type> directory.),
   [
-    withval=`echo $withval | sed -e 's/,/ /'`
+    withval=`echo $withval | sed -e 's/,/ /g'`
     for mod in $withval
     do
       modtype=`echo $mod | sed -e's/\(.*\):.*/\1/'`