[scripts] getver: get svn rev from last commit so that we have consistent revision...
authorNicolas Thill <nico@openwrt.org>
Mon, 28 Sep 2009 12:26:47 +0000 (12:26 +0000)
committerNicolas Thill <nico@openwrt.org>
Mon, 28 Sep 2009 12:26:47 +0000 (12:26 +0000)
SVN-Revision: 17781

scripts/getver.sh

index 5155792016ad8af36e63db9a7d3654b14eb9e8eb..c97bfb5042c24c35f5ffdadfefdd2223c5a0431e 100755 (executable)
@@ -11,7 +11,7 @@ try_version() {
 
 try_svn() {
        [ -d .svn ] || return 1
-       REV="$(svn info | awk '/^Revision:/ { print $2 }')"
+       REV="$(svn info -r COMMITTED | awk '/^Revision:/ { print $2 }')"
        REV="${REV:+r$REV}"
        [ -n "$REV" ]
 }