1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-15 19:53:59 +02:00

getver: get svn rev from last commit so that we have consistent revision numbers between git and svn

SVN-Revision: 17781
This commit is contained in:
Nicolas Thill 2009-09-28 12:26:47 +00:00
parent 2da13936e9
commit 6fa03d63d4

View File

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