summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2009-03-23 16:47:38 +0000
committerNoah Slater <nslater@apache.org>2009-03-23 16:47:38 +0000
commitbd7373b6fdcf955eda64359c84d34e5f19302a04 (patch)
tree323d754dcc84bef504349aeff167ab279d828db2
parent95463d1869509789834f12d5b0e48cdeb78f21a3 (diff)
redirect errors to /dev/null
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@757435 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xbootstrap6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap b/bootstrap
index 3e96e891..5f8ea159 100755
--- a/bootstrap
+++ b/bootstrap
@@ -17,10 +17,10 @@ get () {
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 build-aux/config.sub.gz > build-aux/config.sub
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