From bdf320adebcc5f9bc4bd8e992b8d258a0226bc15 Mon Sep 17 00:00:00 2001 From: Leonid Plyushch Date: Sun, 17 Nov 2019 22:31:12 +0200 Subject: [PATCH] python: more fixes for symlinks --- packages/python/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/python/build.sh b/packages/python/build.sh index d9146f313..5439f0cd4 100644 --- a/packages/python/build.sh +++ b/packages/python/build.sh @@ -49,12 +49,12 @@ termux_step_pre_configure() { termux_step_post_make_install() { (cd $TERMUX_PREFIX/bin - ln -sf python${_MAJOR_VERSION} python3 + ln -sf idle${_MAJOR_VERSION} idle ln -sf python${_MAJOR_VERSION} python - ln -sf python3-config python-config - ln -sf pydoc3 pydoc) + ln -sf python${_MAJOR_VERSION}-config python-config + ln -sf pydoc${_MAJOR_VERSION} pydoc) (cd $TERMUX_PREFIX/share/man/man1 - ln -sf python3.1 python.1) + ln -sf python${_MAJOR_VERSION}.1 python.1) } termux_step_post_massage() {