[APISETS] Remove default kernel32 import library, since stubs no longer need it

This commit is contained in:
Mark Jansen 2018-12-23 22:39:10 +01:00
parent 149d22d857
commit bb6dfbc473
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
5 changed files with 101 additions and 101 deletions

View file

@ -375,9 +375,9 @@ class SpecFile(object):
def write_cmake(self, cmakelists, baseaddress):
seen = set()
# ntdll and kernel32 are linked against everything, self = internal,
# ntdll is linked against everything, self = internal,
# we cannot link cfgmgr32 and wmi?
ignore = ['ntdll', 'kernel32', 'self', 'cfgmgr32', 'wmi']
ignore = ['ntdll', 'self', 'cfgmgr32', 'wmi']
forwarders = self.forwarder_modules()
fwd_strings = [x for x in forwarders if not (x in seen or x in ignore or seen.add(x))]
fwd_strings = ' '.join(fwd_strings)