From: GNU Libc Maintainers Date: Mon, 25 Aug 2025 19:11:05 +0000 (+0200) Subject: unsubmitted-quiet-ldconfig X-Git-Tag: archive/raspbian/2.36-9+rpi1+deb12u13^2~44 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5dbe0ba63019ddc68f065aa92388150f45f3ae68;p=glibc.git unsubmitted-quiet-ldconfig Gbp-Pq: Topic i386 Gbp-Pq: Name unsubmitted-quiet-ldconfig.diff --- diff --git a/sysdeps/unix/sysv/linux/x86/readelflib.c b/sysdeps/unix/sysv/linux/x86/readelflib.c index cfa2a9dd2..6860df380 100644 --- a/sysdeps/unix/sysv/linux/x86/readelflib.c +++ b/sysdeps/unix/sysv/linux/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; }