summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2022-02-02 05:17:09 +0100
committerGravatar Nikias Bassen2022-02-02 05:17:09 +0100
commitde49a34b0b7e7fa9534086ab94af64786b9ecaa3 (patch)
tree33b0751fa91a1bade6bc69d0661357c500c33dfa
parentd7758c07ec8200d20c68384b291ca9e948802e92 (diff)
downloadlibplist-de49a34b0b7e7fa9534086ab94af64786b9ecaa3.tar.gz
libplist-de49a34b0b7e7fa9534086ab94af64786b9ecaa3.tar.bz2
configure: Prevent wrong version string generation (e.g. when doing a shallow checkout from git)
-rwxr-xr-xgit-version-gen2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-version-gen b/git-version-gen
index 6feac34..b403fce 100755
--- a/git-version-gen
+++ b/git-version-gen
@@ -5,7 +5,7 @@ if test -n "$1"; then
5else 5else
6 if test -d "${SRCDIR}/.git" && test -x "`which git`" ; then 6 if test -d "${SRCDIR}/.git" && test -x "`which git`" ; then
7 git update-index -q --refresh 7 git update-index -q --refresh
8 VER=`git describe --tags --always --dirty=-dirty` 8 VER=`git describe --tags --dirty=-dirty`
9 else 9 else
10 if test -f "${SRCDIR}/.tarball-version"; then 10 if test -f "${SRCDIR}/.tarball-version"; then
11 VER=`cat "${SRCDIR}/.tarball-version"` 11 VER=`cat "${SRCDIR}/.tarball-version"`