Gentoo Archives: gentoo-commits

From: Nick Sarnie <sarnex@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-staging/files/
Date: Sun, 19 Sep 2021 14:08:42
Message-Id: 1632060463.e02a72bfe8ed2a5aba4d6d3c00a4d6c3a167bd5e.sarnex@gentoo
1 commit: e02a72bfe8ed2a5aba4d6d3c00a4d6c3a167bd5e
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Tue Sep 14 11:17:20 2021 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 19 14:07:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e02a72bf
7
8 app-emulation/wine-staging: remove unused patch(es)
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
13
14 .../files/wine-staging-6.12-winegcc-equals-args.patch | 13 -------------
15 1 file changed, 13 deletions(-)
16
17 diff --git a/app-emulation/wine-staging/files/wine-staging-6.12-winegcc-equals-args.patch b/app-emulation/wine-staging/files/wine-staging-6.12-winegcc-equals-args.patch
18 deleted file mode 100644
19 index 562b63af063..00000000000
20 --- a/app-emulation/wine-staging/files/wine-staging-6.12-winegcc-equals-args.patch
21 +++ /dev/null
22 @@ -1,13 +0,0 @@
23 -https://bugs.winehq.org/show_bug.cgi?id=51413
24 -https://bugs.gentoo.org/800809
25 ---- a/tools/winegcc/winegcc.c
26 -+++ b/tools/winegcc/winegcc.c
27 -@@ -1982,7 +1982,7 @@ int main(int argc, char **argv)
28 - if (strncmp("-Wl,", opts.args->base[i], 4) == 0)
29 - {
30 - unsigned int j;
31 -- strarray* Wl = strarray_fromstring(opts.args->base[i] + 4, ",=");
32 -+ strarray* Wl = strarray_fromstring(opts.args->base[i] + 4, ",");
33 - for (j = 0; j < Wl->size; j++)
34 - {
35 - if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)