summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2015-10-20 16:55:23 +0200
committerDavid Henningsson <david.henningsson@canonical.com>2015-10-20 16:55:23 +0200
commitc25b06577c2cc251c541732f245117c913206916 (patch)
treee2cf0eff1436f934e22b4211bc456a320f31beea
parentf277f2c5094fb32c5d879923960eb807b3b1c535 (diff)
git-version-gen: Avoid further processing when tarball-version is present
In case a tarball-version file is present, use that and quit. Otherwise git will continue looking for directories, potentially finding .git directories which are dirty and mark the version as such. BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=90936
-rwxr-xr-xgit-version-gen5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-version-gen b/git-version-gen
index 754688441..079b93ec3 100755
--- a/git-version-gen
+++ b/git-version-gen
@@ -84,7 +84,10 @@ then
v=`cat $tarball_version_file` || exit 1
case $v in
*$nl*) v= ;; # reject multi-line output
- [0-9]*) ;;
+ [0-9]*)
+ echo "$v" | tr -d '\012'
+ exit 0
+ ;;
*) v= ;;
esac
test -z "$v" \