aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-12-02 21:58:05 +0100
committerSam Ravnborg <sam@ravnborg.org>2008-12-03 22:58:29 +0100
commit167d6a02c1dbdd84d49e87df7718f18fa31cb971 (patch)
tree62dd448fc2286dd6a05a06bfa22313180164c34b /scripts
parentscripts: improve the decodecode script (diff)
downloadlinux-dev-167d6a02c1dbdd84d49e87df7718f18fa31cb971.tar.xz
linux-dev-167d6a02c1dbdd84d49e87df7718f18fa31cb971.zip
setlocalversion: print correct subversion revision
Output svn revision of latest change, instead of repo revision as thats what we're interested in (especially when working on a branch/tag). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/setlocalversion2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/setlocalversion b/scripts/setlocalversion
index 72d233528ade..81d984b91594 100755
--- a/scripts/setlocalversion
+++ b/scripts/setlocalversion
@@ -51,7 +51,7 @@ if hgid=`hg id 2>/dev/null`; then
fi
# Check for svn and a svn repo.
-if rev=`svn info 2>/dev/null | grep '^Revision'`; then
+if rev=`svn info 2>/dev/null | grep '^Last Changed Rev'`; then
rev=`echo $rev | awk '{print $NF}'`
changes=`svn status 2>/dev/null | grep '^[AMD]' | wc -l`