c6ce65d3d0
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
12 lines
334 B
Diff
12 lines
334 B
Diff
--- a/ld/x86_aout.h 2005-11-07 20:07:31.506442000 +0100
|
|
+++ b/ld/x86_aout.h 2020-02-07 20:07:41.106982496 +0100
|
|
@@ -12,6 +12,9 @@
|
|
#if defined(i386) || defined(__BCC__) || defined(MSDOS)
|
|
typedef long Long;
|
|
#define __OUT_OK 1
|
|
+#elif defined(__x86_64__)
|
|
+typedef int Long;
|
|
+#define __OUT_OK 1
|
|
#else
|
|
typedef char Long[4];
|
|
#endif
|