summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-08-12 21:28:05 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-16 14:57:58 +0100
commit0e978df36d8c152f3e92408b3652ee1c10f15557 (patch)
treedd21c747d9150e86e49b10c97ee8bd9ab584c812
parent66c96d1499d0f94ab235e4013a11e6321537f06c (diff)
downloadpoky-0e978df36d8c152f3e92408b3652ee1c10f15557.tar.gz
unzip: Always enable largefile support
(From OE-Core rev: 6423a850db2d8eff08d4018c82242803625f5990) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/unzip/unzip_6.0.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/unzip/unzip_6.0.bb b/meta/recipes-extended/unzip/unzip_6.0.bb
index 96068eefdd..a4d10c30aa 100644
--- a/meta/recipes-extended/unzip/unzip_6.0.bb
+++ b/meta/recipes-extended/unzip/unzip_6.0.bb
@@ -46,7 +46,8 @@ UPSTREAM_CHECK_REGEX = "unzip(?P<pver>(?!552).+)\.tgz"
46 46
47S = "${WORKDIR}/unzip60" 47S = "${WORKDIR}/unzip60"
48 48
49CFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', '-DLARGE_FILE_SUPPORT', '', d)}" 49# Enable largefile support
50CFLAGS += "-DLARGE_FILE_SUPPORT"
50 51
51# Makefile uses CF_NOOPT instead of CFLAGS. We lifted the values from 52# Makefile uses CF_NOOPT instead of CFLAGS. We lifted the values from
52# Makefile and add CFLAGS. Optimization will be overriden by unzip 53# Makefile and add CFLAGS. Optimization will be overriden by unzip