diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2021-07-30 17:01:46 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-08-18 08:57:01 +0200 |
commit | 06b3477436086cee52776f3a5cf9ca05ab17a6a9 (patch) | |
tree | cb0a438fc325d0f615f76cd92ae3caea6cd4f10b /arch | |
parent | 74451dd8bfca0ca487df68280a7910e1d836edbb (diff) | |
download | linux-stable-06b3477436086cee52776f3a5cf9ca05ab17a6a9.tar.gz linux-stable-06b3477436086cee52776f3a5cf9ca05ab17a6a9.tar.bz2 linux-stable-06b3477436086cee52776f3a5cf9ca05ab17a6a9.zip |
x86/tools: Fix objdump version check again
[ Upstream commit 839ad22f755132838f406751439363c07272ad87 ]
Skip (omit) any version string info that is parenthesized.
Warning: objdump version 15) is older than 2.19
Warning: Skipping posttest.
where '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>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Masami Hiramatsu <mhiramat@kernel.org>
Link: https://lore.kernel.org/r/20210731000146.2720-1-rdunlap@infradead.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/tools/chkobjdump.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/tools/chkobjdump.awk b/arch/x86/tools/chkobjdump.awk index fd1ab80be0de..a4cf678cf5c8 100644 --- a/arch/x86/tools/chkobjdump.awk +++ b/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); |