FRV: Drop 'TOPDIR' from Makefiles
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / scripts / setlocalversion
bloba80d6ea8a5bfbce21a8b08b664784886345f6d5f
1 #!/bin/sh
2 # Print additional version information for non-release trees.
4 usage() {
5 echo "Usage: $0 [srctree]" >&2
6 exit 1
9 cd "${1:-.}" || usage
11 # Check for git and a git repo.
12 if head=`git rev-parse --verify HEAD 2>/dev/null`; then
13 # Do we have an untagged version?
14 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
15 printf '%s%s' -g `echo "$head" | cut -c1-8`
18 # Are there uncommitted changes?
19 if git diff-index HEAD | read dummy; then
20 printf '%s' -dirty
23 # All done with git
24 exit
27 # Check for mercurial and a mercurial repo.
28 if hgid=`hg id 2>/dev/null`; then
29 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
31 # Do we have an untagged version?
32 if [ -z "$tag" -o "$tag" = tip ]; then
33 id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
34 printf '%s%s' -hg "$id"
37 # Are there uncommitted changes?
38 # These are represented by + after the changeset id.
39 case "$hgid" in
40 *+|*+\ *) printf '%s' -dirty ;;
41 esac
43 # All done with mercurial
44 exit