# HG changeset patch # User rubidium # Date 1229555555 0 # Node ID 849b45cca2e46366ef1953186571452e4615d2d1 # Parent 3659467c844c50deaea798d0dd94df85dd0cfb5a (svn r14688) -Change: silence the "command not found" error when trying to find the svn/git/hg binary. diff -r 3659467c844c -r 849b45cca2e4 config.lib --- a/config.lib Wed Dec 17 23:08:11 2008 +0000 +++ b/config.lib Wed Dec 17 23:12:35 2008 +0000 @@ -860,13 +860,13 @@ revision="`cat $ROOT_DIR/version`" log 1 "checking revision... $revision" - elif [ -d "$ROOT_DIR/.svn" ] && [ -n "`svn help`" ]; then + elif [ -d "$ROOT_DIR/.svn" ] && [ -n "`svn help 2>/dev/null`" ]; then revision="" log 1 "checking revision... svn detection" - elif [ -d "$ROOT_DIR/.git" ] && [ -n "`git help`" ]; then + elif [ -d "$ROOT_DIR/.git" ] && [ -n "`git help 2>/dev/null`" ]; then revision="" log 1 "checking revision... git detection" - elif [ -d "$ROOT_DIR/.hg" ] && [ -n "`hg help`" ]; then + elif [ -d "$ROOT_DIR/.hg" ] && [ -n "`hg help 2>/dev/null`" ]; then revision="" log 1 "checking revision... hg detection" else