mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-25 13:15:12 +02:00
```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 ```
11 lines
540 B
Diff
11 lines
540 B
Diff
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -159,7 +159,7 @@ case "$host" in
|
|
mips-*-linux-*) ARCH="-D__MIPS__ -D__LINUX__" ;;
|
|
mipsel-*-linux-*) ARCH="-D__MIPS__ -D__LINUX__" ;;
|
|
powerpc-*-linux-*) ARCH="-D__PPC__ -D__LINUX__" ;;
|
|
- powerpc64-*-linux-*) ARCH="-D__PPC__ -D__LINUX__" ;;
|
|
+ powerpc64*-*-linux-*) ARCH="-D__PPC__ -D__LINUX__" ;;
|
|
powerpc-apple-darwin*) ARCH="-D__PPC__ -D__MACOSX__" ;;
|
|
powerpc64-apple-darwin*) ARCH="-D__PPC__ -D__MACOSX__" ;;
|
|
s390*-*-linux-*) ARCH="-D__LINUX__" ;;
|