diff options
author | Christian Pointner <equinox@anytun.org> | 2010-02-20 18:28:59 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2010-02-20 18:28:59 +0000 |
commit | a4baba057f5b9478920b887658f419fd4e9ab9a0 (patch) | |
tree | 318eec53a30bb3463a92582cee5b89e729bfcd59 | |
parent | non-functional changes only: use standard writing of stdint.h types; still im... (diff) |
fixed configure (no svn error output)
-rwxr-xr-x | src/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure b/src/configure index bcadb99..67e27ef 100755 --- a/src/configure +++ b/src/configure @@ -257,7 +257,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 |