diff options
| author | Aren Villanueva | 2015-11-16 11:14:40 +1100 |
|---|---|---|
| committer | Aren Villanueva | 2015-11-16 11:14:40 +1100 |
| commit | e420b69606dca0a4f88103440715b848e4e24093 (patch) | |
| tree | c3a633ed3a7da4f9a23b27d78e4611b4954c2556 /drivers | |
| parent | 402c24ec8baf10d6445213f1552cbeaaf0b55643 (diff) | |
| download | godot-e420b69606dca0a4f88103440715b848e4e24093.tar.gz godot-e420b69606dca0a4f88103440715b848e4e24093.tar.zst godot-e420b69606dca0a4f88103440715b848e4e24093.zip | |
Properly fixes compilation in an msys environment.
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/SCsub | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/SCsub b/drivers/SCsub index fd77931a2..b3f83468d 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=[] |
