aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/setlocalversion
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-10-25 17:43:50 -0400
committerSam Ravnborg <sam@ravnborg.org>2008-10-29 17:02:07 -0400
commite3da2fb712bb75b6035ba0743f3256df1de30bce (patch)
tree2578d7a94267e16b894cb5f511df8d4b74297f32 /scripts/setlocalversion
parentdcc2da1a9693807096e9ac5137b499a829c51268 (diff)
kbuild: setlocalversion: dont include svn change count
The number of pending changes is pretty useless, so encoding it into the version is just annoying by the constant shuffle in corresponding modules. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/setlocalversion')
-rwxr-xr-xscripts/setlocalversion2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/setlocalversion b/scripts/setlocalversion
index 83b75126c9f7..453faffe18a7 100755
--- a/scripts/setlocalversion
+++ b/scripts/setlocalversion
@@ -55,7 +55,7 @@ if rev=`svn info 2>/dev/null | grep '^Revision'`; then
55 55
56 # Are there uncommitted changes? 56 # Are there uncommitted changes?
57 if [ $changes != 0 ]; then 57 if [ $changes != 0 ]; then
58 printf -- '-svn%s%s%s' "$rev" -dirty "$changes" 58 printf -- '-svn%s%s' "$rev" -dirty
59 else 59 else
60 printf -- '-svn%s' "$rev" 60 printf -- '-svn%s' "$rev"
61 fi 61 fi