diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-08-10 20:37:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-08-11 09:36:05 +0100 |
commit | 2850991c37f39a098bd15219af725f85b81417a0 (patch) | |
tree | f9eb270dd48f0e51ec81f2da4d4d36c402b28a3b /meta/recipes-support | |
parent | c4c58b13c2ffd45d915cc8d122162be724249b56 (diff) | |
download | poky-2850991c37f39a098bd15219af725f85b81417a0.tar.gz |
gnupg: Fix reproducibility failure
yat2m can be found within the build or from the recipe-sysroot-native if
runtime dependencies are present. The sysroot version has version differences
to the in tree copy. Specify the one we want to make the build determinstic.
(From OE-Core rev: 1feb5274db6e985e10f58359b148dabb4076917a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/gnupg/gnupg_2.4.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/gnupg/gnupg_2.4.2.bb b/meta/recipes-support/gnupg/gnupg_2.4.2.bb index 580782037e..631df8ac9d 100644 --- a/meta/recipes-support/gnupg/gnupg_2.4.2.bb +++ b/meta/recipes-support/gnupg/gnupg_2.4.2.bb | |||
@@ -33,6 +33,8 @@ EXTRA_OECONF = "--disable-ldap \ | |||
33 | --with-mailprog=${sbindir}/sendmail \ | 33 | --with-mailprog=${sbindir}/sendmail \ |
34 | --enable-gpg-is-gpg2 \ | 34 | --enable-gpg-is-gpg2 \ |
35 | " | 35 | " |
36 | # yat2m can be found from recipe-sysroot-native non-deterministically with different versioning otherwise | ||
37 | CACHED_CONFIGUREVARS += "ac_cv_path_YAT2M=./yat2m" | ||
36 | 38 | ||
37 | # A minimal package containing just enough to run gpg+gpgagent (E.g. use gpgme in opkg) | 39 | # A minimal package containing just enough to run gpg+gpgagent (E.g. use gpgme in opkg) |
38 | PACKAGES =+ "${PN}-gpg" | 40 | PACKAGES =+ "${PN}-gpg" |