From f1c585edd01640dd267197cae6fd66465eace9bb Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Mon, 2 Jun 2025 11:51:12 +1200 Subject: libc/glibc: Add workaround for makeinfo build issue Newer versions of makeinfo fail to build the older versions of the glibc manual triggering build failures. Add a workaround for this my disabling makeinfo for the glibc build where needed. Fixes #2358 Signed-off-by: Chris Packham --- scripts/build/libc/glibc.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts/build/libc') diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index 34da4cfe..043660c1 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -182,6 +182,10 @@ glibc_backend_once() # or even after they get installed... echo "ac_cv_path_BASH_SHELL=/bin/bash" >>config.cache + if [ "${CT_GLIBC_MAKEINFO_WORKAROUND}" = "y" ]; then + echo "ac_cv_prog_MAKEINFO=" >>config.cache + fi + CT_SymlinkToolsMultilib # Configure with --prefix the way we want it on the target... -- cgit v1.2.3