summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-03-14 17:42:51 +1100
committerChris Johns <chrisj@rtems.org>2016-03-14 17:44:04 +1100
commit8d0e377a2801ca40b1f2a550926e1490b40e8437 (patch)
treef304ac072b31e41f57e9efeea28912dd3a4b132f
parentsb: Update download to check the config file for release URL control. (diff)
downloadrtems-source-builder-8d0e377a2801ca40b1f2a550926e1490b40e8437.tar.bz2
sb: Fix the --without-error-report parsing of the label.
Update #2526.
-rw-r--r--source-builder/sb/build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source-builder/sb/build.py b/source-builder/sb/build.py
index 747ad58..15d569d 100644
--- a/source-builder/sb/build.py
+++ b/source-builder/sb/build.py
@@ -112,8 +112,8 @@ class build:
def _generate_report_(self, header, footer = None):
label, result = self.opts.with_arg('error-report')
- if (label.startswith('without') and result != 'yes') or \
- (label.startswith('with') and result != 'no'):
+ if (label.startswith('without_') and result != 'yes') or \
+ (label.startswith('with_') and result != 'no'):
ereport.generate('rsb-report-%s.txt' % self.macros['name'],
self.opts, header, footer)