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 ```
11 lines
571 B
Diff
11 lines
571 B
Diff
--- a/boost/fiber/detail/cpu_relax.hpp 2017-09-02 11:56:11.000000000 +0200
|
|
+++ b/boost/fiber/detail/cpu_relax.hpp 2017-11-09 17:25:40.258995963 +0100
|
|
@@ -48,7 +48,7 @@
|
|
# define cpu_relax() asm volatile ("nop" ::: "memory");
|
|
# endif
|
|
#elif BOOST_ARCH_MIPS
|
|
-# define cpu_relax() asm volatile ("pause" ::: "memory");
|
|
+# define cpu_relax() asm volatile ("nop" ::: "memory");
|
|
#elif BOOST_ARCH_PPC
|
|
// http://code.metager.de/source/xref/gnu/glibc/sysdeps/powerpc/sys/platform/ppc.h
|
|
// http://stackoverflow.com/questions/5425506/equivalent-of-x86-pause-instruction-for-ppc
|