861ac185a6
```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 ```
24 lines
444 B
Diff
24 lines
444 B
Diff
--- a/execinfo.c
|
|
+++ b/execinfo.c
|
|
@@ -26,6 +26,7 @@
|
|
* $Id: execinfo.c,v 1.3 2004/07/19 05:21:09 sobomax Exp $
|
|
*/
|
|
|
|
+#define _GNU_SOURCE
|
|
#include <sys/types.h>
|
|
#include <sys/uio.h>
|
|
#include <dlfcn.h>
|
|
--- a/stacktraverse.c
|
|
+++ b/stacktraverse.c
|
|
@@ -1,3 +1,4 @@
|
|
+#define _GNU_SOURCE
|
|
#include <stddef.h>
|
|
|
|
#include "stacktraverse.h"
|
|
--- a/test.c
|
|
+++ b/test.c
|
|
@@ -1,3 +1,4 @@
|
|
+#define _GNU_SOURCE
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|