summaryrefslogtreecommitdiffstats
path: root/rtems.py
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2020-07-24 20:44:12 +0530
committerChris Johns <chrisj@rtems.org>2020-07-27 12:44:00 +1000
commitd05ceeb86f3d778a3497634d161c4d00612575c7 (patch)
treef90d7feaf6379af5d1c4bb055237374697b835be /rtems.py
parentrtems: Allow checking multiple environment variable (diff)
downloadrtems_waf-d05ceeb86f3d778a3497634d161c4d00612575c7.tar.bz2
rtems: Add uninstall option to the list of commands
Diffstat (limited to 'rtems.py')
-rw-r--r--rtems.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtems.py b/rtems.py
index ceabcd9..067a213 100644
--- a/rtems.py
+++ b/rtems.py
@@ -131,7 +131,7 @@ def init(ctx, filters = None, version = None, long_commands = False, bsp_init =
#
commands = []
for cmd in waflib.Options.commands:
- if cmd in ['build', 'clean', 'install']:
+ if cmd in ['build', 'clean', 'install', 'uninstall']:
for x in arch_bsps:
commands += [cmd + '-' + x]
else: