diff options
author | 2022-04-24 18:59:56 -0700 | |
---|---|---|
committer | 2022-04-24 18:59:56 -0700 | |
commit | 00bfbfb0db1fcf863e34d946e324ebc5cdb8d1ea (patch) | |
tree | 9b5c04b019bf15f59f799d5a366e464fe9b4cc4f /GIT-VERSION-GEN | |
parent | Makefile: add support for SQLite3 (diff) | |
download | tgif-00bfbfb0db1fcf863e34d946e324ebc5cdb8d1ea.tar.xz |
cmd/version: include fork and sqlite versions
To add in identification and debuggability, this patch modifies the
version of git to add the "tgif" designation to the version string as
well as including the SQLite header and library versions.
Diffstat (limited to 'GIT-VERSION-GEN')
-rwxr-xr-x | GIT-VERSION-GEN | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index fdcebd2c58..4a99958b45 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -26,7 +26,7 @@ else VN="$DEF_VER" fi -VN=$(expr "$VN" : v*'\(.*\)') +VN=$(expr "$VN" : v*'\(.*\)')"-tgif" if test -r $GVF then |