dd9d4a1979
```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 ```
14 lines
237 B
Diff
14 lines
237 B
Diff
--- a/src/engines/ptrace_linux.cc
|
|
+++ b/src/engines/ptrace_linux.cc
|
|
@@ -8,6 +8,10 @@
|
|
# include <elf.h>
|
|
#endif
|
|
|
|
+#ifndef __GLIBC__
|
|
+typedef int __ptrace_request;
|
|
+#endif
|
|
+
|
|
#include <dirent.h>
|
|
#include <sched.h>
|
|
#include <stdio.h>
|
|
|