From cfb26e446e795258005b6f88196c4201d9979f81 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sun, 30 Sep 2012 22:43:29 +0000 Subject: [PATCH] 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 --- modules/config5.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/'` -- 2.40.0