From 991f815eae288dc7558e87e24e2b3f8491aac501 Mon Sep 17 00:00:00 2001 From: Rod Whitby Date: Mon, 1 Aug 2005 17:15:34 +0000 Subject: [PATCH] Fixed the error check in autobuid --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 23acb086ca..34fd9506d4 100644 --- a/Makefile +++ b/Makefile @@ -331,7 +331,7 @@ autobuild: ${MAKE} build-optware-nslu2 upload-optware-nslu2-cross || $$errors++; \ ${MAKE} build-optware-wl500g upload-optware-wl500g-cross || $$errors++; \ ${MAKE} upload-sources || $$errors++ ; \ - if [ "$$errors" != "0" ] ; then \ + if [ $$errors ne 0 ] ; then \ echo "*** Errors during autobuild: $$errors ***" ; \ fi \ ) -- 2.39.5