diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-07 17:20:16 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-08 08:21:11 +0000 |
commit | 568fb875bf1041fedd12da7976b7e4ce29fa4958 (patch) | |
tree | 2421abb889d17d075b63d84c5e91fc7a18552594 /meta/recipes-core/glibc | |
parent | 1f41f116173153cf0684270636ee7a7a599f690c (diff) | |
download | poky-568fb875bf1041fedd12da7976b7e4ce29fa4958.tar.gz |
glibc: Explicitly disable msgfmt
If configure is rerun it finds msgfmt from gettext-native which is installed
during package_write_ipk|deb and means builds are not determinisic.
Whether msgfmt is needed is debatable (libc.mo files aren't generated without
it), however, we should at least be consistent which this patch ensures.
(From OE-Core rev: 9ffd08cf7d472e6572ee8f04781f410c9d657188)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc')
-rw-r--r-- | meta/recipes-core/glibc/glibc.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/glibc/glibc.inc b/meta/recipes-core/glibc/glibc.inc index 58d2ba7bc4..23a6ca99ae 100644 --- a/meta/recipes-core/glibc/glibc.inc +++ b/meta/recipes-core/glibc/glibc.inc | |||
@@ -9,8 +9,11 @@ inherit autotools texinfo features_check systemd | |||
9 | 9 | ||
10 | LEAD_SONAME = "libc.so" | 10 | LEAD_SONAME = "libc.so" |
11 | 11 | ||
12 | # msgfmt could come from gettext-native but we don't depend on that and | ||
13 | # disable for reproducibility | ||
12 | CACHED_CONFIGUREVARS += " \ | 14 | CACHED_CONFIGUREVARS += " \ |
13 | ac_cv_path_BASH_SHELL=${base_bindir}/bash \ | 15 | ac_cv_path_BASH_SHELL=${base_bindir}/bash \ |
16 | ac_cv_prog_MSGFMT= \ | ||
14 | libc_cv_slibdir=${base_libdir} \ | 17 | libc_cv_slibdir=${base_libdir} \ |
15 | libc_cv_rootsbindir=${base_sbindir} \ | 18 | libc_cv_rootsbindir=${base_sbindir} \ |
16 | libc_cv_localedir=${localedir} \ | 19 | libc_cv_localedir=${localedir} \ |