Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 34704 invoked from network); 6 Oct 2009 19:15:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Oct 2009 19:15:23 -0000 Received: (qmail 27152 invoked by uid 500); 6 Oct 2009 19:15:22 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 27069 invoked by uid 500); 6 Oct 2009 19:15:21 -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 26938 invoked by uid 99); 6 Oct 2009 19:15:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Oct 2009 19:15:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Tue, 06 Oct 2009 19:15:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AE69F238889C; Tue, 6 Oct 2009 19:14:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r822436 - /httpd/mod_ftp/trunk/build/addloadexample.awk Date: Tue, 06 Oct 2009 19:14:27 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091006191427.AE69F238889C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wrowe Date: Tue Oct 6 19:14:27 2009 New Revision: 822436 URL: http://svn.apache.org/viewvc?rev=822436&view=rev Log: A noop for mod_ftp, prepare this script to be recycleable with no example conf Modified: httpd/mod_ftp/trunk/build/addloadexample.awk Modified: httpd/mod_ftp/trunk/build/addloadexample.awk URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/build/addloadexample.awk?rev=822436&r1=822435&r2=822436&view=diff ============================================================================== --- httpd/mod_ftp/trunk/build/addloadexample.awk (original) +++ httpd/mod_ftp/trunk/build/addloadexample.awk Tue Oct 6 19:14:27 2009 @@ -37,8 +37,10 @@ print "LoadModule " MODULE "_module " LIBPATH "/mod_" MODULE DSO; print ""; } - print "# Example mod_" MODULE " configuration"; - print "#Include " EXAMPLECONF "\n"; + if ( length(EXAMPLECONF) ) { + print "# Example mod_" MODULE " configuration"; + print "#Include " EXAMPLECONF "\n"; + } } }