From 254b827bb9ee977a3e7ed729af3444a002e2f05e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 16 Jun 2016 10:15:55 +0200 Subject: Use long commands on more platforms --- rtems.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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', -- cgit v1.2.3