summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2008-06-15 17:43:55 +0000
committerNoah Slater <nslater@apache.org>2008-06-15 17:43:55 +0000
commit8a2b7c65e5edafe631fac209694ef150063a3e48 (patch)
treec12a7d1cf27d7af4df321b72898368307dd8f3c9 /bootstrap
parentad89186d09e1db0a88299ad66529031173daac82 (diff)
portability fixes for OpenSolaris
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@667982 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap b/bootstrap
index 70fae49b..b2eb6bdb 100755
--- a/bootstrap
+++ b/bootstrap
@@ -124,7 +124,7 @@ check_svn_environment () {
fi
if test -n "`$SVN_EXECUTABLE info . 2> /dev/null`"; then
SVN_CHECKOUT_BOOLEAN="true"
- fi > /dev/null
+ fi
if test "$SVN_CHECKOUT_BOOLEAN" != "true"; then
echo "Warning: Unable to determine checkout information."
fi
@@ -144,7 +144,7 @@ generate_acinclude () {
else
if test "$SVN_CHECKOUT_BOOLEAN" = "true"; then
revision_number=`$SVN_EXECUTABLE info . | \
- awk "/Revision:/{print \$2}"`
+ awk "/Revision:/{print \\$2}"`
fi
if test -n "$REPOSITORY_REVISION"; then
revision_number="$REPOSITORY_REVISION"