gnu: emacs-consult: Fix grammar.
[jackhill/guix/guix.git] / gnu / packages / patches / mingw-w64-reproducible-gendef.patch
CommitLineData
4719b715
CD
1This following patch was originally found at the debian mingw-w64 team's
2mingw-w64 repo located here:
3https://salsa.debian.org/mingw-w64-team/mingw-w64.git
4
5Invoke the following in the aforementioned repo to see the original patch:
6
7 $ git show 4974e2c:debian/patches/reproducible-gendef.patch
8
9Description: Drop __DATE__ from gendef
10Author: Stephen Kitt <skitt@debian.org>
11
12This allows gendef to be built reproducibly.
13
14--- a/mingw-w64-tools/gendef/src/gendef.c
15+++ b/mingw-w64-tools/gendef/src/gendef.c
16@@ -196,7 +196,6 @@
17 " By default, the output files are named after their DLL counterparts\n"
18 " gendef MYDLL.DLL Produces MYDLL.def\n"
19 " gendef - MYDLL.DLL Prints the exports to stdout\n");
20- fprintf (stderr, "\nBuilt on %s\n", __DATE__);
21 fprintf (stderr, "\nReport bugs to <mingw-w64-public@lists.sourceforge.net>\n");
22 exit (0);
23 }