765e304c4b
```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 ```
19 lines
393 B
Diff
19 lines
393 B
Diff
--- a/src/util/u_endian.h 2017-12-21 18:31:22.000000000 +0100
|
|
+++ b/src/util/u_endian.h 2017-12-26 09:22:52.597199480 +0100
|
|
@@ -68,6 +68,16 @@
|
|
|
|
#define PIPE_ARCH_LITTLE_ENDIAN
|
|
|
|
+#else
|
|
+/* Musl libc */
|
|
+#include <endian.h>
|
|
+
|
|
+#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
+# define PIPE_ARCH_LITTLE_ENDIAN
|
|
+#elif __BYTE_ORDER == __BIG_ENDIAN
|
|
+# define PIPE_ARCH_BIG_ENDIAN
|
|
+#endif
|
|
+
|
|
#endif
|
|
|
|
#endif
|