diff options
author | Sam James <sam@gentoo.org> | 2023-02-09 00:46:24 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-02-09 00:46:24 +0000 |
commit | 86c7a0a4149490bfb53077a1e26543130f2baca2 (patch) | |
tree | 941c7b642bde104561dac800ded9f151c542bc1a | |
parent | crossdev: style tweaks (diff) | |
download | crossdev-86c7a0a4149490bfb53077a1e26543130f2baca2.tar.gz crossdev-86c7a0a4149490bfb53077a1e26543130f2baca2.tar.bz2 crossdev-86c7a0a4149490bfb53077a1e26543130f2baca2.zip |
wrappers: fix mipsel-linux-gnu cache vars for *sys_siglist20230209
sys_siglist was removed from glibc-2.32. Before now, for mipsel-linux-gnu,
we were forcing the cache var to 'yes', rather than 'no'. I suspect this
test would've worked correctly even without caching anyway, but it is what it
is.
Default to 'no' instead of 'yes'.
See also: https://lists.openembedded.org/g/openembedded-core/topic/dunfell_patch_site_make/77178472?p=
Closes: https://bugs.gentoo.org/791154
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | wrappers/site/mipsel-linux-gnu | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wrappers/site/mipsel-linux-gnu b/wrappers/site/mipsel-linux-gnu index 42f82bf..7ecdba1 100644 --- a/wrappers/site/mipsel-linux-gnu +++ b/wrappers/site/mipsel-linux-gnu @@ -109,14 +109,14 @@ cv_mono_sizeof_sunpath=108 mono_cv_uscore=${mono_cv_uscore=no} # general -ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes} +ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=no} ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes} ac_cv_func_memcmp_working=${ac_cv_func_memcmp_working=yes} ac_cv_type_uid_t={ac_cv_type_uid_t=yes} # bash -bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes} -bash_cv_sys_siglist=${bash_cv_sys_siglist=yes} +bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=no} +bash_cv_sys_siglist=${bash_cv_sys_siglist=no} # clamav clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes} |