python: more fixes for symlinks

This commit is contained in:
Leonid Pliushch 2019-11-17 22:31:12 +02:00
parent 5731f8f231
commit 6908c2217f
1 changed files with 4 additions and 4 deletions

View File

@ -49,12 +49,12 @@ termux_step_pre_configure() {
termux_step_post_make_install() { termux_step_post_make_install() {
(cd $TERMUX_PREFIX/bin (cd $TERMUX_PREFIX/bin
ln -sf python${_MAJOR_VERSION} python3 ln -sf idle${_MAJOR_VERSION} idle
ln -sf python${_MAJOR_VERSION} python ln -sf python${_MAJOR_VERSION} python
ln -sf python3-config python-config ln -sf python${_MAJOR_VERSION}-config python-config
ln -sf pydoc3 pydoc) ln -sf pydoc${_MAJOR_VERSION} pydoc)
(cd $TERMUX_PREFIX/share/man/man1 (cd $TERMUX_PREFIX/share/man/man1
ln -sf python3.1 python.1) ln -sf python${_MAJOR_VERSION}.1 python.1)
} }
termux_step_post_massage() { termux_step_post_massage() {