summaryrefslogtreecommitdiff
path: root/system/bubblewrap/musl-fixes.patch
diff options
context:
space:
mode:
authorMax Rees <maxcrees@me.com>2020-03-24 01:36:35 -0500
committerMax Rees <maxcrees@me.com>2020-03-24 01:36:35 -0500
commit5c377a414af8ade03074a03857cf64a7482300a8 (patch)
tree5383edddb05e2785b57a52ae7937e0ffa16bb1ca /system/bubblewrap/musl-fixes.patch
parent6c3b706e304a6ff23339e3595717d95863474e34 (diff)
downloadpackages-5c377a414af8ade03074a03857cf64a7482300a8.tar.gz
packages-5c377a414af8ade03074a03857cf64a7482300a8.tar.bz2
packages-5c377a414af8ade03074a03857cf64a7482300a8.tar.xz
packages-5c377a414af8ade03074a03857cf64a7482300a8.zip
system/bubblewrap: bump to 0.4.0
Diffstat (limited to 'system/bubblewrap/musl-fixes.patch')
-rw-r--r--system/bubblewrap/musl-fixes.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/system/bubblewrap/musl-fixes.patch b/system/bubblewrap/musl-fixes.patch
deleted file mode 100644
index ecf626331..000000000
--- a/system/bubblewrap/musl-fixes.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/config.h.in
-+++ b/config.h.in
-@@ -102,3 +102,14 @@
-
- /* Define to 1 if you need to in order for `stat' and other things to work. */
- #undef _POSIX_SOURCE
-+
-+/* taken from glibc unistd.h and fixes musl */
-+#ifndef TEMP_FAILURE_RETRY
-+#define TEMP_FAILURE_RETRY(expression) \
-+ (__extension__ \
-+ ({ long int __result; \
-+ do __result = (long int) (expression); \
-+ while (__result == -1L && errno == EINTR); \
-+ __result; }))
-+#endif
-+