summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--source-builder/sb/build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source-builder/sb/build.py b/source-builder/sb/build.py
index 4d8787c..747ad58 100644
--- a/source-builder/sb/build.py
+++ b/source-builder/sb/build.py
@@ -112,7 +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 == '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)