From 0aeed7e5253b09a38f0873dfcbd21a762449e88d Mon Sep 17 00:00:00 2001
From: Nicolas Thill <nico@openwrt.org>
Date: Mon, 5 Oct 2009 09:30:53 +0000
Subject: [PATCH] getver: don't use "-r COMMITTED" arg which needs network
 access to the repository, use the "Last Changed Rev:" line instead

SVN-Revision: 17864
---
 scripts/getver.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/getver.sh b/scripts/getver.sh
index 7248ca7753..cd9b90a4bd 100755
--- a/scripts/getver.sh
+++ b/scripts/getver.sh
@@ -11,7 +11,7 @@ try_version() {
 
 try_svn() {
 	[ -d .svn ] || return 1
-	REV="$(svn info -r COMMITTED | awk '/^Revision:/ { print $2 }')"
+	REV="$(svn info | awk '/^Last Changed Rev:/ { print $4 }')"
 	REV="${REV:+r$REV}"
 	[ -n "$REV" ]
 }
-- 
GitLab