newer versions of sdcc dropped support for xa51, compiles fine without so change the ckeck for sdcc

git-svn-id: svn://svn.openwrt.org/openwrt/packages@26473 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
thepeople 2011-04-04 19:42:27 +00:00
parent 073cae1c8e
commit 51a560e052

View File

@ -48,7 +48,7 @@ define Package/firmwarehotplug/install
endef
define Require/working-sdcc
sdcc -v 2>&1 | awk '($$$$1 == "SDCC") && ($$$$3 == "mcs51/gbz80/z80/avr/ds390/pic16/pic14/TININative/xa51/ds400/hc08") { print "ok" }' | grep ok > /dev/null
sdcc -v 2>&1 | awk '($$$$1 == "SDCC") && ($$$$3 ~ "mcs51/gbz80/z80/ds390/pic16/pic14/TININative/") { print "ok" }' | grep ok > /dev/null
endef
$(eval $(call RequireCommand,sdcc, \