projects
/
apache
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db3b8aa
)
fix bug in r1392120: replace ALL commas
author
Jeff Trawick
<trawick@apache.org>
Sun, 30 Sep 2012 22:43:29 +0000
(22:43 +0000)
committer
Jeff 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
patch
|
blob
|
history
diff --git
a/modules/config5.m4
b/modules/config5.m4
index 661ec15fdfaddd74d48f67c7fe5656ddd8242173..16f2ff3630bf388e63021d7248667722b4bfcf6e 100644
(file)
--- 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/<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/'`