diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2015-03-18 16:46:16 +1100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-03-23 14:47:39 +1100 |
commit | a71aa05e1416863e6b6a3e0af8f847a711f1145d (patch) | |
tree | d584ebf9dd62c559a83ecd18c55a061e983e9060 /arch/powerpc/Makefile | |
parent | e4a9616c548f67537a8d020a45a327f6a4d583ee (diff) | |
download | talos-obmc-linux-a71aa05e1416863e6b6a3e0af8f847a711f1145d.tar.gz talos-obmc-linux-a71aa05e1416863e6b6a3e0af8f847a711f1145d.zip |
powerpc: Convert relocs_check to a shell script using grep
This runs a bit faster and removes another use of perl from
the kernel build.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-By: Tony Breeds <tony@bakeyournoodle.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/Makefile')
-rw-r--r-- | arch/powerpc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index fc502e042438..07a480861f78 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile @@ -248,10 +248,10 @@ boot := arch/$(ARCH)/boot ifeq ($(CONFIG_RELOCATABLE),y) quiet_cmd_relocs_check = CALL $< - cmd_relocs_check = perl $< "$(OBJDUMP)" "$(obj)/vmlinux" + cmd_relocs_check = $(CONFIG_SHELL) $< "$(OBJDUMP)" "$(obj)/vmlinux" PHONY += relocs_check -relocs_check: arch/powerpc/relocs_check.pl vmlinux +relocs_check: arch/powerpc/relocs_check.sh vmlinux $(call cmd,relocs_check) zImage: relocs_check |