Re: [Rpm-maint] [rpm-software-management/rpm] Double the '%' chars when splitting macro args (#1058)

2020-02-06 Thread Panu Matilainen
Oh and thanks for the patch. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/1058#issuecomment-582918173___ Rpm-maint mailing

Re: [Rpm-maint] [rpm-software-management/rpm] Double the '%' chars when splitting macro args (#1058)

2020-02-06 Thread Panu Matilainen
Merged #1058 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/1058#event-3013987494___ Rpm-maint mailing list

Re: [Rpm-maint] [rpm-software-management/rpm] Double the '%' chars when splitting macro args (#1058)

2020-02-06 Thread Panu Matilainen
pmatilai approved this pull request. I wont claim to have actually thought this through, when clearly you have. This is less code, what's not to like. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

[Rpm-maint] [rpm-software-management/rpm] Double the '%' chars when splitting macro args (#1058)

2020-02-06 Thread Michael Schroeder
Before this commit, there was an escape flag that made the macro expansion keep %% escapes. But this did not work for macros that returned an % character by other means. Remove the old escape mechanism and instead double the % characters when the body is split into argument. Fixes: #1055 You can