summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anylike.org>2010-02-20 18:29:34 +0000
committerChristian Pointner <equinox@anylike.org>2010-02-20 18:29:34 +0000
commit6f9d6d891d766469b87e54c8a383680efc6b1a31 (patch)
tree476207ddd8ebc04895c4eb7cdbacb0e85897e85a
parentupdated manpage (add -U|--debug) (diff)
fixed configure (no svn error output)
-rwxr-xr-xsrc/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure b/src/configure
index c1528e6..3636e09 100755
--- a/src/configure
+++ b/src/configure
@@ -274,7 +274,7 @@ if [ "$TARGET" != "mingw" ]; then
VERSION=`cat ../version`
if which svn >/dev/null; then
- SVN_REV=`svn info | grep "^Revision: " | awk '{print($2)}'`
+ SVN_REV=`svn info 2> /dev/null | grep "^Revision: " | awk '{print($2)}'`
if [ -n "$SVN_REV" ]; then
VERSION="$VERSION (svn$SVN_REV)"
fi