[PATCH 2/3] python3: fix install of optional modules

Signed-off-by: Joerg Seitter <adk@seitter.net> --- package/python3/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/python3/Makefile b/package/python3/Makefile index 299e99096..04a7402b9 100644 --- a/package/python3/Makefile +++ b/package/python3/Makefile @@ -59,9 +59,9 @@ define PKG_mod_template INSTALL_MODS_$${ADK_PACKAGE_${1}}+= ${2}-install ${2}-install: - ${INSTALL_DIR} $$(IDIR_$(1))/usr/lib/python3.6/lib-dynload + ${INSTALL_DIR} $$(IDIR_$(1))/usr/lib/python3.8/lib-dynload for m in ${2}; do \ - ${INSTALL_DATA} $(WRKINST)/usr/lib/python3.6/lib-dynload/$$$${m}*.so $$(IDIR_$(1))/usr/lib/python3.6/lib-dynload ;\ + ${INSTALL_DATA} $(WRKINST)/usr/lib/python3.8/lib-dynload/$$$${m}*.so $$(IDIR_$(1))/usr/lib/python3.8/lib-dynload ;\ done endef @@ -94,6 +94,7 @@ CONFIGURE_ARGS:= --with-threads \ --with-system-expat \ --disable-ipv6 \ --without-cxx-main + CONFIGURE_ENV+= ac_cv_have_long_long_format=yes \ ac_cv_file__dev_ptmx=yes \ ac_cv_file__dev_ptc=no -- 2.11.0
participants (1)
-
Joerg Seitter