diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-08-12 21:28:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-16 14:57:58 +0100 |
commit | 0e978df36d8c152f3e92408b3652ee1c10f15557 (patch) | |
tree | dd21c747d9150e86e49b10c97ee8bd9ab584c812 | |
parent | 66c96d1499d0f94ab235e4013a11e6321537f06c (diff) | |
download | poky-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.bb | 3 |
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 | ||
47 | S = "${WORKDIR}/unzip60" | 47 | S = "${WORKDIR}/unzip60" |
48 | 48 | ||
49 | CFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', '-DLARGE_FILE_SUPPORT', '', d)}" | 49 | # Enable largefile support |
50 | CFLAGS += "-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 |