aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/setlocalversion
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/setlocalversion')
-rw-r--r--scripts/setlocalversion23
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/setlocalversion b/scripts/setlocalversion
index 82e4993f0a73..a80d6ea8a5bf 100644
--- a/scripts/setlocalversion
+++ b/scripts/setlocalversion
@@ -19,4 +19,27 @@ if head=`git rev-parse --verify HEAD 2>/dev/null`; then
19 if git diff-index HEAD | read dummy; then 19 if git diff-index HEAD | read dummy; then
20 printf '%s' -dirty 20 printf '%s' -dirty
21 fi 21 fi
22
23 # All done with git
24 exit
25fi
26
27# Check for mercurial and a mercurial repo.
28if hgid=`hg id 2>/dev/null`; then
29 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
30
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"
35 fi
36
37 # Are there uncommitted changes?
38 # These are represented by + after the changeset id.
39 case "$hgid" in
40 *+|*+\ *) printf '%s' -dirty ;;
41 esac
42
43 # All done with mercurial
44 exit
22fi 45fi