mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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>
This commit is contained in:
parent
dcc2da1a96
commit
e3da2fb712
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ if rev=`svn info 2>/dev/null | grep '^Revision'`; then
|
|||
|
||||
# Are there uncommitted changes?
|
||||
if [ $changes != 0 ]; then
|
||||
printf -- '-svn%s%s%s' "$rev" -dirty "$changes"
|
||||
printf -- '-svn%s%s' "$rev" -dirty
|
||||
else
|
||||
printf -- '-svn%s' "$rev"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue