diff options
author | Joshua Watt <JPEWhacker@gmail.com> | 2019-07-18 10:23:54 -0500 |
---|---|---|
committer | Joshua Watt <JPEWhacker@gmail.com> | 2019-07-18 10:25:23 -0500 |
commit | 3fa43aa92f1a1c90304f6f4f49270915d1392cce (patch) | |
tree | f7f68c3c1aec14a6c55df7cad4ce15cbb9829529 | |
parent | 1d466f68a08d2251da6c46cd788bf33cc5096f4a (diff) | |
download | meta-mingw-2.8_M2.tar.gz |
bzip2: Remove bbappend2.8_M2
The patch being applied by meta-mingw has been upstreamed as of 1.0.8,
so there is no need to have a bbappend anymore.
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
-rw-r--r-- | recipes-extended/bzip2/bzip2/0001-Fix-include-path-separator.patch | 33 | ||||
-rw-r--r-- | recipes-extended/bzip2/bzip2_1.0.7.bbappend | 4 |
2 files changed, 0 insertions, 37 deletions
diff --git a/recipes-extended/bzip2/bzip2/0001-Fix-include-path-separator.patch b/recipes-extended/bzip2/bzip2/0001-Fix-include-path-separator.patch deleted file mode 100644 index 4c43b7a..0000000 --- a/recipes-extended/bzip2/bzip2/0001-Fix-include-path-separator.patch +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | From 84c8769b52c63cce8a8a413e5fcbad1a65681d46 Mon Sep 17 00:00:00 2001 | ||
2 | From: Joshua Watt <JPEW.hacker@gmail.com> | ||
3 | Date: Tue, 2 Jul 2019 13:06:30 -0500 | ||
4 | Subject: [PATCH] Fix include path separator | ||
5 | |||
6 | Changes the include path separator for Windows builds to use "/" instead | ||
7 | of "\". Windows has no problems with using a forward slash as a path | ||
8 | separator, but using a backslash causes problems when attempting to | ||
9 | cross compile for other platforms (for example, when trying to cross | ||
10 | compile for MinGW from Linux). | ||
11 | |||
12 | Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> | ||
13 | Upstream-Status: Submitted [https://sourceware.org/ml/bzip2-devel/2019-q3/msg00004.html] | ||
14 | --- | ||
15 | bzip2.c | 2 +- | ||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
17 | |||
18 | diff --git a/bzip2.c b/bzip2.c | ||
19 | index e362c65..be3b3be 100644 | ||
20 | --- a/bzip2.c | ||
21 | +++ b/bzip2.c | ||
22 | @@ -128,7 +128,7 @@ | ||
23 | #if BZ_LCCWIN32 | ||
24 | # include <io.h> | ||
25 | # include <fcntl.h> | ||
26 | -# include <sys\stat.h> | ||
27 | +# include <sys/stat.h> | ||
28 | |||
29 | # define NORETURN /**/ | ||
30 | # define PATH_SEP '\\' | ||
31 | -- | ||
32 | 2.21.0 | ||
33 | |||
diff --git a/recipes-extended/bzip2/bzip2_1.0.7.bbappend b/recipes-extended/bzip2/bzip2_1.0.7.bbappend deleted file mode 100644 index 3cc4b01..0000000 --- a/recipes-extended/bzip2/bzip2_1.0.7.bbappend +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | |||
2 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | ||
3 | |||
4 | SRC_URI_append_mingw32 = " file://0001-Fix-include-path-separator.patch" | ||