mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
patchupdate.py: Autodepends should ignore disabled patchsets.
(cherry picked from commit 72f80a6c3c
)
This commit is contained in:
parent
5ed04faa06
commit
766590c481
@ -271,6 +271,10 @@ def load_patchsets():
|
||||
categories[category] = set()
|
||||
categories[category].add(i)
|
||||
|
||||
# Filter autodepends on disabled patchsets
|
||||
for i, patch in all_patches.iteritems():
|
||||
patch.auto_depends = set([j for j in patch.auto_depends if not all_patches[j].disabled])
|
||||
|
||||
# Add virtual targets for all the categories
|
||||
for category, indices in categories.iteritems():
|
||||
patch = PatchSet(category, directory)
|
||||
|
Loading…
Reference in New Issue
Block a user