Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1BEC190C0 for ; Sun, 30 Sep 2012 22:44:14 +0000 (UTC) Received: (qmail 15549 invoked by uid 500); 30 Sep 2012 22:44:13 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 15486 invoked by uid 500); 30 Sep 2012 22:44:13 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 15478 invoked by uid 99); 30 Sep 2012 22:44:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Sep 2012 22:44:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Sep 2012 22:44:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C1BA52388900; Sun, 30 Sep 2012 22:43:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1392122 - /httpd/httpd/trunk/modules/config5.m4 Date: Sun, 30 Sep 2012 22:43:29 -0000 To: cvs@httpd.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120930224329.C1BA52388900@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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/ 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/'`