Skip to content

Commit

Permalink
Issue #1580: Ignore more win32 system .dlls.
Browse files Browse the repository at this point in the history
  • Loading branch information
matysek committed Oct 13, 2015
1 parent b5a6bfb commit ebf9fe2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions PyInstaller/depend/dylib.py
Expand Up @@ -45,9 +45,12 @@
# because they might be resolved when scanning code for ctypes
# dependencies.
r'coredll\.dll',
r'kernel32\.dll',
r'kernel32',
r'crypt32\.dll',
r'kernel32',
r'kernel32\.dll',
r'msvcrt\.dll',
r'rpcrt4\.dll',
r'user32\.dll',
])

# Regex includes - overrides excludes.
Expand Down

0 comments on commit ebf9fe2

Please sign in to comment.