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: Change output format of 'wine --patches' to match the wine ANNOUNCE file.
This commit is contained in:
4
debian/tools/patchupdate.py
vendored
4
debian/tools/patchupdate.py
vendored
@@ -500,8 +500,8 @@ def generate_makefile(all_patches):
|
||||
if len(patch.patches):
|
||||
fp.write("\t@( \\\n")
|
||||
for p in _unique(patch.patches, key=lambda p: (p.patch_author, p.patch_subject)):
|
||||
fp.write("\t\techo '+ { \"%s\", \"%s\", \"%s\" },'; \\\n" % \
|
||||
(patch.name, _escape(p.patch_author), _escape(p.patch_subject)))
|
||||
fp.write("\t\techo '+ { \"%s\", \"%s\" },'; \\\n" % \
|
||||
(_escape(p.patch_author), _escape(p.patch_subject)))
|
||||
fp.write("\t) > %s.ok\n" % patch.name)
|
||||
else:
|
||||
fp.write("\ttouch %s.ok\n" % patch.name)
|
||||
|
||||
Reference in New Issue
Block a user