From: Rod Whitby Date: Wed, 3 Aug 2005 03:22:17 +0000 (+0000) Subject: Fixed the autobuild error reporting. X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=648b671fd19365f78320c73d0fbf8a3078a46c47;p=openembedded.git Fixed the autobuild error reporting. --- diff --git a/Makefile b/Makefile index ad3aac44ce..9121220e73 100644 --- a/Makefile +++ b/Makefile @@ -332,8 +332,8 @@ 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 \ - echo "*** Errors during autobuild: $errors ***" ; \ + if [ "$$errors" != "0" ] ; then \ + echo "*** Errors during autobuild: $$errors ***" ; \ fi \ )