You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
patchupdate.py: Sort dependencies, to avoid too many changes to patchinstall.sh.
This commit is contained in:
2
debian/tools/patchupdate.py
vendored
2
debian/tools/patchupdate.py
vendored
@@ -436,7 +436,7 @@ def resolve_dependencies(all_patches, index = None, depends = None):
|
||||
"""Returns a sorted list with all dependencies for a given patch."""
|
||||
|
||||
def _resolve(depends):
|
||||
for i in depends:
|
||||
for i in sorted(depends):
|
||||
# Check for disabled patch
|
||||
if all_patches[i].disabled:
|
||||
raise PatchUpdaterError("Encountered dependency on disabled patchset %s" % all_patches[i].name)
|
||||
|
Reference in New Issue
Block a user