mirror of
https://github.com/reactos/reactos.git
synced 2025-06-24 22:59:46 +00:00
[APISETS] Remove default kernel32 import library, since stubs no longer need it
This commit is contained in:
parent
149d22d857
commit
bb6dfbc473
5 changed files with 101 additions and 101 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue