From: Jeff Trawick Date: Sun, 30 Sep 2012 22:43:29 +0000 (+0000) Subject: fix bug in r1392120: replace ALL commas X-Git-Tag: 2.5.0-alpha~6255 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cfb26e446e795258005b6f88196c4201d9979f81;p=apache fix bug in r1392120: replace ALL commas git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1392122 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/config5.m4 b/modules/config5.m4 index 661ec15fdf..16f2ff3630 100644 --- a/modules/config5.m4 +++ b/modules/config5.m4 @@ -3,7 +3,7 @@ AC_ARG_WITH(module, APACHE_HELP_STRING(--with-module=module-type:module-file, Enable module-file in the modules/ 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/'`