From: Rod Whitby Date: Mon, 1 Aug 2005 17:15:34 +0000 (+0000) Subject: Fixed the error check in autobuid X-Git-Tag: Release-2010-05/1~9453^2~2960^2^2~9^2~2^2~3^2^2~4^2~57 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=991f815eae288dc7558e87e24e2b3f8491aac501;p=openembedded.git Fixed the error check in autobuid --- 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 \ )