]> granicus.if.org Git - apache/commitdiff
fix bug in r1392120: replace ALL commas
authorJeff Trawick <trawick@apache.org>
Sun, 30 Sep 2012 22:43:29 +0000 (22:43 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 30 Sep 2012 22:43:29 +0000 (22:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1392122 13f79535-47bb-0310-9956-ffa450edef68

modules/config5.m4

index 661ec15fdfaddd74d48f67c7fe5656ddd8242173..16f2ff3630bf388e63021d7248667722b4bfcf6e 100644 (file)
@@ -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/'`