summaryrefslogtreecommitdiff
path: root/rtems.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-05-11 12:21:24 +1000
committerChris Johns <chrisj@rtems.org>2016-05-11 12:21:24 +1000
commit93e554578cdcb2b6c5439b3371dcd558b3218829 (patch)
tree6dac482ae77c9416693444bee6cb0e554cc9dd84 /rtems.py
parent32555ff4e18f4f4ec2a05819e88b3581c2589724 (diff)
Pass through commands we do not expand.
Diffstat (limited to 'rtems.py')
-rw-r--r--rtems.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtems.py b/rtems.py
index 46c5c22..8384191 100644
--- a/rtems.py
+++ b/rtems.py
@@ -119,6 +119,8 @@ def init(ctx, filters = None, version = None):
if cmd in ['build', 'clean', 'install']:
for x in arch_bsps:
commands += [cmd + '-' + x]
+ else:
+ commands += [cmd]
waflib.Options.commands = commands
except:
pass