get rid of one more $(shell) instance

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14741 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2009-03-03 15:28:57 +00:00
parent 2abf9f5f94
commit bb66977c14
1 changed files with 1 additions and 6 deletions

View File

@ -53,12 +53,7 @@ ifneq (,$(findstring uml,$(BOARD)))
LINUX_KARCH=um LINUX_KARCH=um
else else
ifeq (,$(LINUX_KARCH)) ifeq (,$(LINUX_KARCH))
LINUX_KARCH=$(shell echo $(ARCH) | sed -e 's/i[3-9]86/x86/' \ LINUX_KARCH=$(strip $(subst i386,x86,$(subst armeb,arm,$(subst mipsel,mips,$(subst sh2,sh,$(subst sh3,sh,$(subst sh4,sh,$(ARCH))))))))
-e 's/mipsel/mips/' \
-e 's/mipseb/mips/' \
-e 's/sh[234]/sh/' \
-e 's/armeb/arm/' \
)
endif endif
endif endif