projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
70e7986
)
scripts/link-vmlinux.sh: fix error message presentation
author
Andrew Morton
<akpm@linux-foundation.org>
Mon, 6 Mar 2023 21:32:53 +0000
(13:32 -0800)
committer
Andrew Morton
<akpm@linux-foundation.org>
Sat, 8 Apr 2023 20:45:37 +0000
(13:45 -0700)
This comes out as
Try make KALLSYMS_EXTRA_PASS=1 as a workaround
but we want quotes:
Try "make KALLSYMS_EXTRA_PASS=1" as a workaround
Link:
https://lkml.kernel.org/r/202303042034.Cjc7JTd0-lkp@intel.com
Cc: kernel test robot <lkp@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
scripts/link-vmlinux.sh
patch
|
blob
|
history
diff --git
a/scripts/link-vmlinux.sh
b/scripts/link-vmlinux.sh
index 32e573943cf036bda7d45082779917676b7a05fe..0512c313a590b52e5ad732479650f97796153810 100755
(executable)
--- a/
scripts/link-vmlinux.sh
+++ b/
scripts/link-vmlinux.sh
@@
-291,7
+291,7
@@
fi
if is_enabled CONFIG_KALLSYMS; then
if ! cmp -s System.map ${kallsyms_vmlinux}.syms; then
echo >&2 Inconsistent kallsyms data
- echo >&2
Try "make KALLSYMS_EXTRA_PASS=1" as a workaround
+ echo >&2
'Try "make KALLSYMS_EXTRA_PASS=1" as a workaround'
exit 1
fi
fi