[PATCH] gcc-changelog: fix combining of arguments.
Martin Liška
mliska@suse.cz
Wed Jul 29 12:19:57 GMT 2020
One obvious fix we've just hit with Honza.
Martin
contrib/ChangeLog:
2020-07-29 Martin Liska <mliska@suse.cz>
* git-backport.py: fix how are ChangeLog paths combined.
---
contrib/git-backport.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/git-backport.py b/contrib/git-backport.py
index 3a9413dcd27..2b8e4686719 100755
--- a/contrib/git-backport.py
+++ b/contrib/git-backport.py
@@ -46,7 +46,7 @@ if __name__ == '__main__':
conflicts = out.strip().split('\n')
changelogs = [c for c in conflicts if c.endswith('ChangeLog')]
if changelogs:
- cmd = 'git checkout --theirs %s' % '\n'.join(changelogs)
+ cmd = 'git checkout --theirs %s' % ' '.join(changelogs)
subprocess.check_output(cmd, shell=True)
# 2) remove all ChangeLog files from index
cmd = 'git diff --name-only --diff-filter=M HEAD'
--
2.27.0
More information about the Gcc-patches
mailing list