diff options
author | Uwe Zeisberger <zeisberg@informatik.uni-freiburg.de> | 2006-06-16 08:48:48 +0200 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-17 00:08:17 +0200 |
commit | 216b2f1f718d653795024a085636d063693dd9a9 (patch) | |
tree | 6bf642676b0341c0b55f051692913efd9c88d0e7 /scripts/setlocalversion | |
parent | 29b0c89953fee8597b4a9cbdd763c294ae0eb4c7 (diff) | |
download | linux-3.10-216b2f1f718d653795024a085636d063693dd9a9.tar.gz linux-3.10-216b2f1f718d653795024a085636d063693dd9a9.tar.bz2 linux-3.10-216b2f1f718d653795024a085636d063693dd9a9.zip |
kbuild: append -dirty for updated but uncommited changes
Compare the working copy with the last commit, instead of the index.
Signed-off-by: Uwe Zeisberger <zeisberg@informatik.uni-freiburg.de>
Acked-by: Ryan Anderson <ryan@michonline.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/setlocalversion')
-rw-r--r-- | scripts/setlocalversion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/setlocalversion b/scripts/setlocalversion index b7bc0f5b64f..82e4993f0a7 100644 --- a/scripts/setlocalversion +++ b/scripts/setlocalversion @@ -16,7 +16,7 @@ if head=`git rev-parse --verify HEAD 2>/dev/null`; then fi # Are there uncommitted changes? - if git diff-files | read dummy; then + if git diff-index HEAD | read dummy; then printf '%s' -dirty fi fi |