summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2023-06-19 12:35:56 +0800
committerSteve Sakoman <steve@sakoman.com>2023-07-07 04:30:26 -1000
commit32aaa30cb843b1d3817225ddd6ed43705d90644a (patch)
treee7e739eef96d371be5b58b479d2376aa3f66d97e
parent9020dfdc8ae401a1e195165c7fe50c4b108b3286 (diff)
downloadpoky-32aaa30cb843b1d3817225ddd6ed43705d90644a.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: b7006ca2f56292312937fd1fa33e62ff908fad9f) 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> (cherry picked from commit dca7d1ce696e97ff4213dd63981f901dfd43ade2) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-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.