mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-util/flatpak-builder: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/28371 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Zac Medico <zmedico@gentoo.org>
This commit is contained in:
committed by
Zac Medico
parent
3af9edbccc
commit
2f92a8507c
@@ -1,18 +0,0 @@
|
||||
--- a/libglnx/glnx-macros.h
|
||||
+++ b/libglnx/glnx-macros.h
|
||||
@@ -28,6 +28,16 @@
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
+/* 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
|
||||
+
|
||||
/* All of these are for C only. */
|
||||
#ifndef __GI_SCANNER__
|
||||
Reference in New Issue
Block a user