diff options
author | Michal Marek <mmarek@suse.cz> | 2012-08-10 11:55:11 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-08-10 11:55:11 +0200 |
commit | 367e43c50d7f7c3b0cec17f4d855a96f47f5e17b (patch) | |
tree | 30f428454cc297106ade2474e6b8e4fc7d189d6a /scripts/link-vmlinux.sh | |
parent | 0d7614f09c1ebdbaa1599a5aba7593f147bf96ee (diff) | |
download | linux-3.10-367e43c50d7f7c3b0cec17f4d855a96f47f5e17b.tar.gz linux-3.10-367e43c50d7f7c3b0cec17f4d855a96f47f5e17b.tar.bz2 linux-3.10-367e43c50d7f7c3b0cec17f4d855a96f47f5e17b.zip |
link-vmlinux.sh: Fix stray "echo" in error message
Reported-by: Jan Engelhardt <jengelh@inai.de>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/link-vmlinux.sh')
-rw-r--r-- | 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 4629038c9e5..4235a6361fe 100644 --- a/scripts/link-vmlinux.sh +++ b/scripts/link-vmlinux.sh @@ -211,7 +211,7 @@ if [ -n "${CONFIG_KALLSYMS}" ]; then if ! cmp -s System.map .tmp_System.map; then echo >&2 Inconsistent kallsyms data - echo >&2 echo Try "make KALLSYMS_EXTRA_PASS=1" as a workaround + echo >&2 Try "make KALLSYMS_EXTRA_PASS=1" as a workaround cleanup exit 1 fi |