summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Seitter <adk@seitter.net>2020-04-13 21:36:19 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2020-04-14 10:20:04 +0200
commitd8071184425feb1373d95cede8bd2da76f0be584 (patch)
treeabc33f8f3a5fb6a7c1b7ee594625ceff3670c40a
parent22efae5a2c0a1fe1c296e755a50375d9156d9ce5 (diff)
python3: fix package build path names
Signed-off-by: Joerg Seitter <adk@seitter.net>
-rw-r--r--package/python3/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/package/python3/Makefile b/package/python3/Makefile
index 3ba447b77..299e99096 100644
--- a/package/python3/Makefile
+++ b/package/python3/Makefile
@@ -103,15 +103,15 @@ HOST_CONFIGURE_ARGS+= --without-cxx-main \
python3-install: ${INSTALL_MODS_y} ${INSTALL_MODS_m}
${INSTALL_DIR} ${IDIR_PYTHON3}/usr/bin ${IDIR_PYTHON3}/usr/lib
- ${INSTALL_DIR} ${IDIR_PYTHON3}/usr/lib/python3.6
- ${INSTALL_DIR} ${IDIR_PYTHON3}/usr/include/python3.6m
+ ${INSTALL_DIR} ${IDIR_PYTHON3}/usr/lib/python3.8
+ ${INSTALL_DIR} ${IDIR_PYTHON3}/usr/include/python3.8
${INSTALL_BIN} ${WRKINST}/usr/bin/python3 ${IDIR_PYTHON3}/usr/bin
${CP} ${WRKINST}/usr/lib/libpython*.so* ${IDIR_PYTHON3}/usr/lib
- ${CP} ${WRKINST}/usr/lib/python3.6/* ${IDIR_PYTHON3}/usr/lib/python3.6
- ${CP} ${WRKINST}/usr/include/python3.6m/pyconfig.h \
- ${IDIR_PYTHON3}/usr/include/python3.6m
+ ${CP} ${WRKINST}/usr/lib/python3.8/* ${IDIR_PYTHON3}/usr/lib/python3.8
+ ${CP} ${WRKINST}/usr/include/python3.8/pyconfig.h \
+ ${IDIR_PYTHON3}/usr/include/python3.8
@-for i in zlib _bz2 _curses _ssl _gdbm _sqlite pyexpat readline; do \
- rm ${IDIR_PYTHON3}/usr/lib/python3.6/lib-dynload/$${i}*so; \
+ rm ${IDIR_PYTHON3}/usr/lib/python3.8/lib-dynload/$${i}*so; \
done
include ${ADK_TOPDIR}/mk/host-bottom.mk