From: Travis Kemen Date: Mon, 4 Apr 2011 19:42:27 +0000 (+0000) Subject: newer versions of sdcc dropped support for xa51, compiles fine without so change... X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=986e1452d336dce03c957fdef68e15dfe639bd62;p=openwrt%2Fsvn-archive%2Farchive.git newer versions of sdcc dropped support for xa51, compiles fine without so change the ckeck for sdcc SVN-Revision: 26473 --- diff --git a/utils/firmwarehotplug/Makefile b/utils/firmwarehotplug/Makefile index 17bc11f63e..d30cc22414 100644 --- a/utils/firmwarehotplug/Makefile +++ b/utils/firmwarehotplug/Makefile @@ -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, \