Fix to consolidate WinCE versions in the compiler versions list.

This commit is contained in:
Shawn Hoover 2015-09-09 12:30:23 -04:00
parent 48e48babb4
commit a8480cc2ff
1 changed files with 3 additions and 3 deletions

View File

@ -283,8 +283,8 @@ def gather_wince_supported_platforms():
path,device = os.path.split(path)
if not device:
path,device = os.path.split(path)
for arch,compiler in all_wince_platforms:
platforms = []
for arch,compiler in all_wince_platforms:
if os.path.isdir(os.path.join(path, device, 'Lib', arch)):
platforms.append((arch, compiler, os.path.join(path, device, 'Include', arch), os.path.join(path, device, 'Lib', arch)))
if platforms: