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 ```
18 lines
393 B
Diff
18 lines
393 B
Diff
--- a/configure
|
|
+++ b/configure
|
|
@@ -444,6 +444,15 @@ if [ ${HAVE_SECCOMP_FILTER} -eq 1 ]; then
|
|
arm*)
|
|
echo "#define SECCOMP_AUDIT_ARCH AUDIT_ARCH_ARM"
|
|
;;
|
|
+ ppc64le)
|
|
+ echo "#define SECCOMP_AUDIT_ARCH AUDIT_ARCH_PPC64LE"
|
|
+ ;;
|
|
+ ppc64)
|
|
+ echo "#define SECCOMP_AUDIT_ARCH AUDIT_ARCH_PPC64"
|
|
+ ;;
|
|
+ ppc)
|
|
+ echo "#define SECCOMP_AUDIT_ARCH AUDIT_ARCH_PPC"
|
|
+ ;;
|
|
esac
|
|
fi
|
|
|