summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2023-06-19 12:35:56 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-21 18:38:25 +0100
commita75cd36f392a800520ade27abac239c6f9ab757b (patch)
tree0abd6c7fbbdc2cc0046f9338c51712ffa8768179
parentd544cbf1d5029b4f52fddba78ae74de8e6bbf88e (diff)
downloadpoky-a75cd36f392a800520ade27abac239c6f9ab757b.tar.gz
unzip: remove hardcoded LARGE_FILE_SUPPORT
Now that unzip's configure can correctly do the detection even in case of cross compilation, there's no need to use this hardcoded LARGE_FILE_SUPPORT flag. (From OE-Core rev: dca7d1ce696e97ff4213dd63981f901dfd43ade2) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/unzip/unzip_6.0.bb3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/recipes-extended/unzip/unzip_6.0.bb b/meta/recipes-extended/unzip/unzip_6.0.bb
index 391e5cd22a..3051e9b5bc 100644
--- a/meta/recipes-extended/unzip/unzip_6.0.bb
+++ b/meta/recipes-extended/unzip/unzip_6.0.bb
@@ -47,9 +47,6 @@ UPSTREAM_CHECK_REGEX = "unzip(?P<pver>(?!552).+)\.tgz"
47 47
48S = "${WORKDIR}/unzip60" 48S = "${WORKDIR}/unzip60"
49 49
50# Enable largefile support
51CFLAGS += "-DLARGE_FILE_SUPPORT"
52
53# Makefile uses CF_NOOPT instead of CFLAGS. We lifted the values from 50# Makefile uses CF_NOOPT instead of CFLAGS. We lifted the values from
54# Makefile and add CFLAGS. Optimization will be overriden by unzip 51# Makefile and add CFLAGS. Optimization will be overriden by unzip
55# configure to be -O3. 52# configure to be -O3.