diff options
author | Rod Whitby <rod@whitby.id.au> | 2005-08-01 17:15:34 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-01 17:15:34 +0000 |
commit | 991f815eae288dc7558e87e24e2b3f8491aac501 (patch) | |
tree | f311be615666817069a6e7ceef0243acad2c712c /Makefile | |
parent | d6176d16a2ff57511f229301c8206d938de79215 (diff) |
Fixed the error check in autobuid
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ ) |