diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2023-03-06 22:32:53 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-04-08 22:45:37 +0200 |
commit | 4b3d049f1c567560191884d4bd8f6e99ab885e20 (patch) | |
tree | 3ca08d9fa4019d0c9b07fde7aebd0d4142359acc /scripts/link-vmlinux.sh | |
parent | ELF: fix all "Elf" typos (diff) | |
download | linux-4b3d049f1c567560191884d4bd8f6e99ab885e20.tar.xz linux-4b3d049f1c567560191884d4bd8f6e99ab885e20.zip |
scripts/link-vmlinux.sh: fix error message presentation
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>
Diffstat (limited to 'scripts/link-vmlinux.sh')
-rwxr-xr-x | scripts/link-vmlinux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh index 32e573943cf0..0512c313a590 100755 --- 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 |