mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 08:15:18 -04:00
Fix bug: excluded modules in one package would be implicitly excluded from packages that depend on it
This fixes the lack of 'xml' package in the 'morepy' package.
This commit is contained in:
parent
56b94eb815
commit
838589ef0f
@ -2196,8 +2196,10 @@ class Packager:
|
||||
ext = Filename(lowerName).getExtension()
|
||||
if ext not in self.packager.nonuniqueExtensions:
|
||||
self.skipFilenames[lowerName] = True
|
||||
|
||||
for moduleName, mdef in package.moduleNames.items():
|
||||
self.skipModules[moduleName] = mdef
|
||||
if not mdef.exclude:
|
||||
self.skipModules[moduleName] = mdef
|
||||
|
||||
# Packager constructor
|
||||
def __init__(self, platform = None):
|
||||
|
Loading…
x
Reference in New Issue
Block a user