From 160954b7171fd786f728a8ebba1ddb3c994a6675 Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Thu, 12 May 2022 11:53:53 +0000 Subject: [PATCH] Python3: fix configure error with autoconf-archive dependency fix build error whilst executing "scripts/create_addon script.config.vdr" BUILD Python3 (host) TOOLCHAIN autotools Executing (host): /build/build.LibreELEC-ARMv7.arm-11.0-devel/build/Python3-3.9.12/configure --host=x86_64-linux-gnu --build=x86_64-linux-gnu --prefix=/build/build.LibreELEC-ARMv7.arm-11.0-devel/toolchain ... configure: WARNING: unrecognized options: --disable-static configure: error: Please install autoconf-archive package and re-run autoreconf FAILURE: scripts/build Python3:host during configure_host (default) --- packages/lang/Python3/package.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lang/Python3/package.mk b/packages/lang/Python3/package.mk index 34a89d0b20..97d34943de 100644 --- a/packages/lang/Python3/package.mk +++ b/packages/lang/Python3/package.mk @@ -8,7 +8,7 @@ PKG_SHA256="2cd94b20670e4159c6d9ab57f91dbf255b97d8c1a1451d1c35f4ec1968adf971" PKG_LICENSE="OSS" PKG_SITE="https://www.python.org/" PKG_URL="https://www.python.org/ftp/python/${PKG_VERSION}/${PKG_NAME::-1}-${PKG_VERSION}.tar.xz" -PKG_DEPENDS_HOST="zlib:host bzip2:host libffi:host util-linux:host xz:host" +PKG_DEPENDS_HOST="zlib:host bzip2:host libffi:host util-linux:host xz:host autoconf-archive:host" PKG_DEPENDS_TARGET="toolchain Python3:host sqlite expat zlib bzip2 xz openssl libffi readline ncurses util-linux" PKG_LONGDESC="Python3 is an interpreted object-oriented programming language." PKG_TOOLCHAIN="autotools"