Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b052ce4c840e2da3c72ab7dadb97d1094f6e3a89
Commit:     b052ce4c840e2da3c72ab7dadb97d1094f6e3a89
Parent:     4e7434ff028c4280bed620f28fdbf9f4d77d77ce
Author:     Theodore Ts'o <[EMAIL PROTECTED]>
AuthorDate: Fri Nov 2 21:53:01 2007 -0400
Committer:  Sam Ravnborg <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 23:14:37 2008 +0100

    kbuild: fix false positive -dirty tag caused by make-kpkg
    
    make-kpkg modifies scripts/package/Makefile and deletes
    scripts/package/builddeb as part of its build process.  Ignore these
    changes so the tree isn't marked as -dirty, when it is just an
    artifact of make-kpkg.  (make-kpkg clean restores the files to their
    original state, and these helper scripts won't affect the final
    compiled kernel in any way.)
    
    Signed-off-by: "Theodore Ts'o" <[EMAIL PROTECTED]>
    Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]>
---
 scripts/setlocalversion |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/scripts/setlocalversion b/scripts/setlocalversion
index acce8eb..52f032e 100644
--- a/scripts/setlocalversion
+++ b/scripts/setlocalversion
@@ -17,7 +17,8 @@ if head=`git rev-parse --verify HEAD 2>/dev/null`; then
 
        # Are there uncommitted changes?
        git update-index --refresh --unmerged > /dev/null
-       if git diff-index HEAD | read dummy; then
+       if git diff-index --name-only HEAD | grep -v "^scripts/package" \
+           | read dummy; then
                printf '%s' -dirty
        fi
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to