diff options
author | Christian Pointner <equinox@anytun.org> | 2010-02-20 18:28:10 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2010-02-20 18:28:10 +0000 |
commit | cd963ec4ed8168a285218a6ee3e848dfcda4a79b (patch) | |
tree | 7ff91f355ffadaa6f10bc60e238d284e569410c6 /src | |
parent | fixed spelling errors (diff) |
fixed configure (no svn error output)
Diffstat (limited to 'src')
-rwxr-xr-x | src/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure b/src/configure index ee80582..8cecd9c 100755 --- a/src/configure +++ b/src/configure @@ -222,7 +222,7 @@ fi 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 |