1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-01 00:59:48 +00:00

file: upgrade 5.39 -> 5.40

0001-src-compress.c-correct-header-define-for-xz-lzma.patch
removed since it is included in 5.40

(From OE-Core rev: ae73c5fa666c0e0a7d1d7a04acd6246542b744aa)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
wangmy
2021-04-08 13:40:50 +08:00
committed by Richard Purdie
parent 565cbd773d
commit 3db91ef623
2 changed files with 2 additions and 30 deletions
@@ -1,27 +0,0 @@
From ffb6ebdb42590cb9f7d3f5177b7b820a9edc4c81 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Sun, 18 Oct 2020 23:40:42 +0200
Subject: [PATCH] src/compress.c: correct header define for xz/lzma
Upstream-Status: Submitted [https://github.com/file/file/pull/98]
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
src/compress.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/compress.c b/src/compress.c
index 67f21583..9670b72c 100644
--- a/src/compress.c
+++ b/src/compress.c
@@ -71,7 +71,7 @@ typedef void (*sig_t)(int);
#include <bzlib.h>
#endif
-#if defined(HAVE_XZLIB_H) && defined(XZLIBSUPPORT)
+#if defined(HAVE_LZMA_H) && defined(XZLIBSUPPORT)
#define BUILTIN_XZLIB
#include <lzma.h>
#endif
--
2.28.0