Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | gnutls detects our outer git trees and injects that revision into its objects. |
| 2 | That isn't deterministic so stop it. Also ensure we're not marked as a development |
| 3 | build as its git detection is faulty. |
| 4 | |
| 5 | RP 2020/2/6 |
| 6 | |
| 7 | Upstream-Status: Pending |
| 8 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> |
| 9 | |
| 10 | |
| 11 | Index: libgcrypt-1.8.5/configure.ac |
| 12 | =================================================================== |
| 13 | --- libgcrypt-1.8.5.orig/configure.ac |
| 14 | +++ libgcrypt-1.8.5/configure.ac |
| 15 | @@ -45,7 +45,7 @@ m4_define([mym4_revision_dec], |
| 16 | m4_define([mym4_betastring], |
| 17 | m4_esyscmd_s([git describe --match 'libgcrypt-[0-9].*[0-9]' --long|\ |
| 18 | awk -F- '$3!=0{print"-beta"$3}'])) |
| 19 | -m4_define([mym4_isgit],m4_if(mym4_betastring,[],[no],[yes])) |
| 20 | +m4_define([mym4_isgit],[no]) |
| 21 | m4_define([mym4_full_version],[mym4_version[]mym4_betastring]) |
| 22 | |
| 23 | AC_INIT([libgcrypt],[mym4_full_version],[http://bugs.gnupg.org]) |
| 24 | @@ -2575,7 +2575,7 @@ AM_CONDITIONAL([BUILD_DOC], [test "x$bui |
| 25 | # |
| 26 | # Provide information about the build. |
| 27 | # |
| 28 | -BUILD_REVISION="mym4_revision" |
| 29 | +BUILD_REVISION="None" |
| 30 | AC_SUBST(BUILD_REVISION) |
| 31 | AC_DEFINE_UNQUOTED(BUILD_REVISION, "$BUILD_REVISION", |
| 32 | [GIT commit id revision used to build this package]) |