aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/fts/fts/fts-header-correctness.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-06-06 16:59:09 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-12 15:04:07 +0100
commitd7a38c46753d5c9692d67a923351d9d6b2e80c3b (patch)
tree09e846bd38098b689205537510e3c198ef504edc /meta/recipes-core/fts/fts/fts-header-correctness.patch
parent7a47752f8223f3c0ed4354d5e39f1319071acf41 (diff)
downloadopenembedded-core-contrib-d7a38c46753d5c9692d67a923351d9d6b2e80c3b.tar.gz
fts: Switch SRC_URI to github
Use the package maintained by voidlinux Drop local patches Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-core/fts/fts/fts-header-correctness.patch')
-rw-r--r--meta/recipes-core/fts/fts/fts-header-correctness.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/meta/recipes-core/fts/fts/fts-header-correctness.patch b/meta/recipes-core/fts/fts/fts-header-correctness.patch
deleted file mode 100644
index c73ddc95d8..0000000000
--- a/meta/recipes-core/fts/fts/fts-header-correctness.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Included needed headers for compiling with musl
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-Upstream-Status: Inappropriate
-
---- fts.orig/fts.h
-+++ fts/fts.h
-@@ -38,6 +38,17 @@
- #ifndef _FTS_H_
- #define _FTS_H_
-
-+#include <sys/types.h>
-+#include <sys/param.h>
-+#include <sys/stat.h>
-+
-+#include <dirent.h>
-+#include <errno.h>
-+#include <fcntl.h>
-+#include <stdlib.h>
-+#include <string.h>
-+#include <unistd.h>
-+
- typedef struct {
- struct _ftsent *fts_cur; /* current node */
- struct _ftsent *fts_child; /* linked list of children */