Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 93233 invoked from network); 23 Mar 2009 16:48:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 23 Mar 2009 16:48:00 -0000 Received: (qmail 57071 invoked by uid 500); 23 Mar 2009 16:48:00 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 57043 invoked by uid 500); 23 Mar 2009 16:48:00 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 57034 invoked by uid 99); 23 Mar 2009 16:48:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Mar 2009 16:48:00 +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; Mon, 23 Mar 2009 16:48:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B47272388965; Mon, 23 Mar 2009 16:47:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r757435 - /couchdb/trunk/bootstrap Date: Mon, 23 Mar 2009 16:47:39 -0000 To: commits@couchdb.apache.org From: nslater@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090323164739.B47272388965@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nslater Date: Mon Mar 23 16:47:38 2009 New Revision: 757435 URL: http://svn.apache.org/viewvc?rev=757435&view=rev Log: redirect errors to /dev/null Modified: couchdb/trunk/bootstrap Modified: couchdb/trunk/bootstrap URL: http://svn.apache.org/viewvc/couchdb/trunk/bootstrap?rev=757435&r1=757434&r2=757435&view=diff ============================================================================== --- couchdb/trunk/bootstrap (original) +++ couchdb/trunk/bootstrap Mon Mar 23 16:47:38 2009 @@ -17,10 +17,10 @@ echo "changequote(\`[', \`]')" > acinclude.m4.tmp sed -e "s/m4_//" < acinclude.m4.in >> acinclude.m4.tmp echo $variable_name >> acinclude.m4.tmp - if test -x "`which gm4 || true`"; then + if test -x "`which gm4 2> /dev/null || true`"; then gm4 acinclude.m4.tmp | grep -v "^$" || true else - if test -x "`which m4 || true`"; then + if test -x "`which m4 2> /dev/null || true`"; then m4 acinclude.m4.tmp | grep -v "^$" || true else echo unknown @@ -43,7 +43,7 @@ gunzip -c m4/ac_check_icu.m4.gz > m4/ac_check_icu.m4 gunzip -c m4/ac_check_curl.m4.gz > m4/ac_check_curl.m4 -if test -x "`which glibtoolize || true`"; then +if test -x "`which glibtoolize 2> /dev/null || true`"; then glibtoolize -f -c --automake else libtoolize -f -c --automake