You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ns...@apache.org on 2009/03/23 17:47:39 UTC

svn commit: r757435 - /couchdb/trunk/bootstrap

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