diff options
author | Aren Villanueva <arenvillanueva@yomogi-soft.com> | 2015-11-16 11:14:40 +1100 |
---|---|---|
committer | Aren Villanueva <arenvillanueva@yomogi-soft.com> | 2015-11-16 11:14:40 +1100 |
commit | e420b69606dca0a4f88103440715b848e4e24093 (patch) | |
tree | c3a633ed3a7da4f9a23b27d78e4611b4954c2556 | |
parent | 402c24ec8baf10d6445213f1552cbeaaf0b55643 (diff) |
Properly fixes compilation in an msys environment.
-rw-r--r-- | drivers/SCsub | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/SCsub b/drivers/SCsub index fd77931a29..b3f83468d4 100644 --- a/drivers/SCsub +++ b/drivers/SCsub @@ -85,11 +85,10 @@ lib_list.append(lib) if len(lib_list) > 0: import os, sys - if os.name=='posix' and sys.platform=='win32': + if os.name=='posix' and sys.platform=='msys': env.Replace(ARFLAGS=['rcsT']) lib = env.Library("drivers_collated", lib_list) - env.Replace(ARFLAGS=['rc']) lib_list = [lib] drivers_base=[] |