diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-12-30 20:10:16 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-12-30 20:10:16 +0200 |
commit | 646afcac0d82edcb5dff90395654c63a4a268c79 (patch) | |
tree | a354aa9d7e1228e63bbe361dfc1afff4677bdffd | |
parent | 22af56e05aa9cba4740d2ff303d876bb0c3cfb2b (diff) | |
download | meson-646afcac0d82edcb5dff90395654c63a4a268c79.zip meson-646afcac0d82edcb5dff90395654c63a4a268c79.tar.gz meson-646afcac0d82edcb5dff90395654c63a4a268c79.tar.bz2 |
Run targets are in the console pool for obvious reasons.
-rw-r--r-- | ninjabackend.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ninjabackend.py b/ninjabackend.py index b9c033f..df51b28 100644 --- a/ninjabackend.py +++ b/ninjabackend.py @@ -306,6 +306,7 @@ class NinjaBackend(backends.Backend): target.subdir, target.command] + target.args elem.add_item('COMMAND', cmd) elem.add_item('description', 'Running external command %s.' % target.name) + elem.add_item('pool', 'console') elem.write(outfile) self.processed_targets[target.name] = True |