From e420b69606dca0a4f88103440715b848e4e24093 Mon Sep 17 00:00:00 2001 From: Aren Villanueva Date: Mon, 16 Nov 2015 11:14:40 +1100 Subject: [PATCH] Properly fixes compilation in an msys environment. --- drivers/SCsub | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/SCsub b/drivers/SCsub index fd77931a29e..b3f83468d40 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=[]