From 09cd636bb5832f487310201895a3da386d081da8 Mon Sep 17 00:00:00 2001 From: agb Date: Mon, 27 Oct 2008 04:29:21 +0000 Subject: [PATCH] [packages] utils/firmwarehotplug: Fix sdcc prereq check on systems where sdcc -v outputs on stderr git-svn-id: svn://svn.openwrt.org/openwrt/packages@13050 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- utils/firmwarehotplug/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/firmwarehotplug/Makefile b/utils/firmwarehotplug/Makefile index 16e5c9774..cdf85e328 100644 --- a/utils/firmwarehotplug/Makefile +++ b/utils/firmwarehotplug/Makefile @@ -51,7 +51,7 @@ endef $(eval $(call BuildPackage,firmwarehotplug)) define Require/working-sdcc - sdcc -v | 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/avr/ds390/pic16/pic14/TININative/xa51/ds400/hc08") { print "ok" }' | grep ok > /dev/null endef $(eval $(call RequireCommand,sdcc, \ -- 2.11.0