Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf tools: Fix building error for arm64.

Commit b11db6581beaccef8ae9a388ae96074aa5cc144f ("perf tools: Fix build
error on ARCH=i386/x86_64/sparc64") uses sed on ARCH, which triggers a
bug in sequence of sed expression, where 's/arm.*/arm/' will replace
'arm64' to 'arm', causes arm64 building failure.

This patch prevent 'arm64' to be mached for 'arm.*' case.

Signed-off-by: Wang Nan <wangnan0@huawei.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Zefan Li <lizefan@huawei.com>
Link: http://lkml.kernel.org/r/1426598987-75245-1-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Wang Nan and committed by
Arnaldo Carvalho de Melo
235504de d5dbc518

+1 -1
+1 -1
tools/perf/config/Makefile.arch
··· 4 4 5 5 ARCH := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/ \ 6 6 -e s/sun4u/sparc/ -e s/sparc64/sparc/ \ 7 - -e s/arm.*/arm/ -e s/sa110/arm/ \ 7 + -e /arm64/!s/arm.*/arm/ -e s/sa110/arm/ \ 8 8 -e s/s390x/s390/ -e s/parisc64/parisc/ \ 9 9 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \ 10 10 -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ \