diff options
author | Werner Koch <[email protected]> | 2016-06-04 16:45:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-06-04 16:45:37 +0000 |
commit | 79b7a8a9e0d41b743ceaee20dc47294359fe0d44 (patch) | |
tree | c230b67d361e11c8b224e186bf403db704f46179 /configure.ac | |
parent | gpg: Add the fingerprint to KEY_CREATED for subkeys. (diff) | |
download | gnupg-79b7a8a9e0d41b743ceaee20dc47294359fe0d44.tar.gz gnupg-79b7a8a9e0d41b743ceaee20dc47294359fe0d44.zip |
w32: Require --enable-build-timestamp for the BUILD_HOSTNAME.
* configure.ac (BUILD_HOSTNAME): Set to "<anon>" bey default.
* build-aux/speedo.mk (speedo_pkg_gnupg_configure): Add
--enable-build-timestamp.
--
Debian-bug-id: 826309
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 07d728a78..1b8a6fc8b 100644 --- a/configure.ac +++ b/configure.ac @@ -1776,12 +1776,13 @@ AC_ARG_ENABLE([build-timestamp], BUILD_TIMESTAMP=`date -u +%Y-%m-%dT%H:%M+0000 2>/dev/null || date` else BUILD_TIMESTAMP="$enableval" - fi], - [BUILD_TIMESTAMP="<none>"]) + fi + BUILD_HOSTNAME="$ac_hostname"], + [BUILD_TIMESTAMP="<none>" + BUILD_HOSTNAME="<anon>"]) AC_SUBST(BUILD_TIMESTAMP) AC_DEFINE_UNQUOTED(BUILD_TIMESTAMP, "$BUILD_TIMESTAMP", [The time this package was configured for a build]) -BUILD_HOSTNAME="$ac_hostname" AC_SUBST(BUILD_HOSTNAME) |