From 2baaf7839403d95dbdeab092b124d06b31e05902 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Tue, 4 Oct 2011 21:42:32 +0200 Subject: [PATCH] If there is no previous error, and if an exception occurs while in -k, then that error must be displayed --- waflib/Runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waflib/Runner.py b/waflib/Runner.py index 4f83d3b9..e9f8ce55 100644 --- a/waflib/Runner.py +++ b/waflib/Runner.py @@ -317,7 +317,7 @@ class Parallel(object): tsk.hasrun = Task.SKIPPED if self.bld.keep == 1: # if -k stop at the first exception, if -kk try to go as far as possible - if Logs.verbose: + if Logs.verbose or not self.error: self.error.append(tsk) self.stop = True continue