From: Felix Fietkau Date: Tue, 3 Mar 2009 15:28:57 +0000 (+0000) Subject: get rid of one more $(shell) instance X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fflorian.git;a=commitdiff_plain;h=015dff9d7d2ad01f3cb1599335d77bc4b84d3ec5;ds=sidebyside get rid of one more $(shell) instance SVN-Revision: 14741 --- diff --git a/include/kernel.mk b/include/kernel.mk index 5d5c9e9172..8b98369b4b 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -53,12 +53,7 @@ ifneq (,$(findstring uml,$(BOARD))) LINUX_KARCH=um else ifeq (,$(LINUX_KARCH)) - LINUX_KARCH=$(shell echo $(ARCH) | sed -e 's/i[3-9]86/x86/' \ - -e 's/mipsel/mips/' \ - -e 's/mipseb/mips/' \ - -e 's/sh[234]/sh/' \ - -e 's/armeb/arm/' \ - ) + LINUX_KARCH=$(strip $(subst i386,x86,$(subst armeb,arm,$(subst mipsel,mips,$(subst sh2,sh,$(subst sh3,sh,$(subst sh4,sh,$(ARCH)))))))) endif endif