summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-16 10:15:55 +0200
committerChris Johns <chrisj@rtems.org>2016-06-20 10:05:08 +1000
commit254b827bb9ee977a3e7ed729af3444a002e2f05e (patch)
treef15477685cc86300fce3f4196f07276cd22b9087
parentRemove tabs as white space. (diff)
downloadrtems_waf-254b827bb9ee977a3e7ed729af3444a002e2f05e.tar.bz2
Use long commands on more platforms
-rw-r--r--rtems.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rtems.py b/rtems.py
index d809606..3c0c976 100644
--- a/rtems.py
+++ b/rtems.py
@@ -32,12 +32,13 @@ import os.path
from . import pkgconfig
import re
import subprocess
+import sys
rtems_default_version = None
rtems_filters = None
rtems_long_commands = False
-windows = os.name == 'nt'
+windows = os.name == 'nt' or sys.platform in ['msys', 'cygwin']
def options(opt):
opt.add_option('--rtems',