Commit 8558f59edf935cf5ee5ffc29a9e9458fd9a71be1

Authored by Michal Marek
1 parent 7b8ea53d7f

setlocalversion: Ignote SCMs above the linux source tree

Dan McGee <dpmcgee@gmail.com> writes:
> Note that when in git, you get the appended "+" sign. If
> LOCALVERSION_AUTO is set, you will get something like
> "eee-gb01b08c-dirty" (whereas the copy of the tree in /tmp still
> returns "eee"). It doesn't matter whether the working tree is dirty or
> clean.
>
> Is there a way to disable this? I'm building from a clean tarball that
> just happens to be unpacked inside a git repository. One would think
> setting LOCALVERSION_AUTO to false would do it, but no such luck...

Fix this by checking if the kernel source tree is the root of the git or
hg repository. No fix for svn: If the kernel source is not tracked in
the svn repository, it works as expected, otherwise determining the
'repository root' is not really a defined task.

Reported-and-tested-by: Dan McGee <dpmcgee@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

scripts/setlocalversion
... ... @@ -43,7 +43,7 @@
43 43 fi
44 44  
45 45 # Check for git and a git repo.
46   - if head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
  46 + if test -d .git && head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
47 47  
48 48 # If we are at a tagged commit (like "v2.6.30-rc6"), we ignore
49 49 # it, because this version is defined in the top level Makefile.
... ... @@ -85,7 +85,7 @@
85 85 fi
86 86  
87 87 # Check for mercurial and a mercurial repo.
88   - if hgid=`hg id 2>/dev/null`; then
  88 + if test -d .hg && hgid=`hg id 2>/dev/null`; then
89 89 tag=`printf '%s' "$hgid" | cut -s -d' ' -f2`
90 90  
91 91 # Do we have an untagged version?