With --disable-largefile build will fail on 32-bit armv5te after version bump to 1.8.2. This is related to a recent y2038 fix for 32bit systems.
Link: https://github.com/jqlang/jq/pull/3407 Fixes: 583aba9ac10a ("jq: Version bump, 1.6 -> 1.7") Signed-off-by: Alexander Dahl <[email protected]> --- rules/jq.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/jq.make b/rules/jq.make index 7f6f6ebd6..e7677052f 100644 --- a/rules/jq.make +++ b/rules/jq.make @@ -34,7 +34,7 @@ JQ_LICENSE_FILES := file://COPYING;md5=cf7fcb0a1def4a7ad62c028f7d0dca47 JQ_CONF_TOOL := autoconf JQ_CONF_OPT := \ $(CROSS_AUTOCONF_USR) \ - --disable-largefile \ + $(GLOBAL_LARGE_FILE_OPTION) \ --disable-valgrind \ --disable-asan \ --disable-ubsan \ -- 2.47.3
