103ab731ab
* runit is kept at -Np0 ```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
385 B
Diff
11 lines
385 B
Diff
--- a/src/system/sysutils.cpp 2020-09-10 15:30:36.000000000 +0200
|
|
+++ b/src/system/sysutils.cpp 2020-10-03 19:35:03.241898331 +0200
|
|
@@ -189,7 +189,7 @@
|
|
fesetenv(FE_DFL_DISABLE_DENORMS_ENV);
|
|
#endif
|
|
#endif
|
|
-#if defined __ARMEL__
|
|
+#if defined __ARMEL__ && (__ARM_ARCH > 5)
|
|
// ARM32
|
|
static const unsigned int x = 0x04086060;
|
|
static const unsigned int y = 0x03000000;
|