From: GNU Libc Maintainers Date: Mon, 6 May 2024 20:34:15 +0000 (+0200) Subject: unsubmitted-quiet-ldconfig X-Git-Tag: archive/raspbian/2.38-8+rpi1^2~35 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c7ed61e0307e3c8fb462b6b895fb2137eec56bb6;p=glibc.git unsubmitted-quiet-ldconfig Gbp-Pq: Topic i386 Gbp-Pq: Name unsubmitted-quiet-ldconfig.diff --- diff --git a/sysdeps/x86/readelflib.c b/sysdeps/x86/readelflib.c index 3b8a22816..f586a9031 100644 --- a/sysdeps/x86/readelflib.c +++ b/sysdeps/x86/readelflib.c @@ -59,8 +59,11 @@ process_elf_file (const char *file_name, const char *lib, int *flag, #ifndef __x86_64__ failed: #endif - error (0, 0, _("%s is for unknown machine %d.\n"), - file_name, elf_header->e_machine); + if (opt_verbose) + { + error (0, 0, _("%s is for unknown machine %d.\n"), + file_name, elf_header->e_machine); + } return 1; }