861ac185a6
```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
396 B
Diff
18 lines
396 B
Diff
In musl open64 is by default a #define to open.
|
|
However, it provides compat symbols and we want this
|
|
to explicitly use those.
|
|
|
|
--- a/libeatmydata/libeatmydata.c
|
|
+++ b/libeatmydata/libeatmydata.c
|
|
@@ -27,6 +27,11 @@
|
|
#include <stdarg.h>
|
|
#include <pthread.h>
|
|
|
|
+/* refer to the compat alias in musl */
|
|
+#if !defined(__GLIBC__)
|
|
+#undef open64
|
|
+#endif
|
|
+
|
|
/*
|
|
#define CHECK_FILE "/tmp/eatmydata"
|
|
*/
|