X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/3927b707bd00290ca84af36c8b070378a1482113..da17fa0ebc6f384b0baee43b9139b72ae480d340:/tools/mkversion.pl?ds=inline

diff --git a/tools/mkversion.pl b/tools/mkversion.pl
index 4b771517..a3ec2f2b 100644
--- a/tools/mkversion.pl
+++ b/tools/mkversion.pl
@@ -38,13 +38,14 @@ if(open(SVNINFO, "svn info $main_dir|")) {
 	}
 	
 } else {
-	# Strategy two: look for .svn/entries. The third line should be "dir", the fourth line should contain the current
+	# Strategy two: look for .svn/entries. The third line should be "dir", the fourth line should contain 
+	#  the currently checked out revision, the eleventh line should contain the last changed revision.
 	#  revision.
 	if(open(ENTRIES, "$main_dir/.svn/entries")) {
 		my $i = 1;
 		while(<ENTRIES>) {
 			last if($i == 3 and !/^dir/);
-			if($i == 4 and /^([0-9]*)/) {
+			if($i == 11 and /^([0-9]*)/) {
 				$present = 1;
 				$svnversion = $1;
 			}