diff options
author | Werner Koch <wk@gnupg.org> | 2024-07-04 17:17:13 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2024-07-04 17:21:45 +0200 |
commit | 736579331b14035db5b857812d18b493678f7769 (patch) | |
tree | 60b9b87135cea566a35454e1137b5aeea4fabe97 /tools | |
parent | build: Require libgpg-error 1.50 or later. (diff) | |
download | gnupg2-736579331b14035db5b857812d18b493678f7769.tar.xz gnupg2-736579331b14035db5b857812d18b493678f7769.zip |
gpgconf: Print the full commit id.
* autogen.sh: Update to version 2024-07-04 from libgpg-error.
* configure.ac (BUILD_REVISION): Rename the ac_define by
BUILD_COMMITID.
* tools/gpgconf.c (show_version_gnupg): Use it here.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gpgconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gpgconf.c b/tools/gpgconf.c index a2113aee0..1b9a9268f 100644 --- a/tools/gpgconf.c +++ b/tools/gpgconf.c @@ -1189,7 +1189,7 @@ show_version_gnupg (estream_t fp, const char *prefix) ssize_t length; es_fprintf (fp, "%s%sGnuPG %s (%s)\n%s%s\n", prefix, *prefix?"":"* ", - gpgrt_strusage (13), BUILD_REVISION, prefix, gpgrt_strusage (17)); + gpgrt_strusage (13), BUILD_COMMITID, prefix, gpgrt_strusage (17)); /* Show the GnuPG VS-Desktop version in --show-configs mode */ if (prefix && *prefix) |