All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 RESEND] x86/tools: fix objdump version check again
@ 2021-07-16  3:16 Randy Dunlap
  0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2021-07-16  3:16 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Masami Hiramatsu, Thomas Gleixner, Ingo Molnar,
	Andrew Morton, H . Peter Anvin

Skip (omit) any version string info that is parenthesized.

Warning: objdump version 15) is older than 2.19
build-r1020.out:Warning: Skipping posttest.

when 'objdump -v' says:
GNU objdump (GNU Binutils; SUSE Linux Enterprise 15) 2.35.1.20201123-7.18

Fixes: 8bee738bb1979 ("x86: Fix objdump version check in chkobjdump.awk for different formats.")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: H. Peter Anvin <hpa@zytor.com>
---
v2: rebase & resend

 arch/x86/tools/chkobjdump.awk |    1 +
 1 file changed, 1 insertion(+)

--- linux-next-20210715.orig/arch/x86/tools/chkobjdump.awk
+++ linux-next-20210715/arch/x86/tools/chkobjdump.awk
@@ -10,6 +10,7 @@ BEGIN {
 
 /^GNU objdump/ {
 	verstr = ""
+	gsub(/\(.*\)/, "");
 	for (i = 3; i <= NF; i++)
 		if (match($(i), "^[0-9]")) {
 			verstr = $(i);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-07-16  3:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-16  3:16 [PATCH v2 RESEND] x86/tools: fix objdump version check again Randy Dunlap

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.