python3: add python3 symlink to python exec as per PEP394
authorAlexandru Ardelean <aa@ocedo.com>
Tue, 14 Oct 2014 11:45:28 +0000 (14:45 +0300)
committerAlexandru Ardelean <aa@ocedo.com>
Wed, 15 Oct 2014 06:13:24 +0000 (09:13 +0300)
lang/python3/Makefile

index f4e245b1378c012ec1d910f394c1641ce12026d7..d97611ea8c6189a5143a0902647c8fed8796b4cc 100644 (file)
@@ -99,8 +99,6 @@ endif
 define Build/Configure
        -$(MAKE) -C $(PKG_BUILD_DIR) distclean
        (cd $(PKG_BUILD_DIR); autoreconf --force --install || exit 0)
-       # The python executable needs to stay in the rootdir since its location will
-       # be used to compute the path of the config files.
        $(CP) ./files/config.site $(PKG_BUILD_DIR)
        $(call Build/Configure/Default, \
                --sysconfdir=/etc \
@@ -158,6 +156,7 @@ endef
 define Py3Package/python3/install
        # Adding the lib-dynload folder (even just empty) suppresses 2 warnings when starting Python
        $(INSTALL_DIR) $(1)/usr/lib/python$(PYTHON_VERSION)/lib-dynload/
+       $(LN) python$(PYTHON_VERSION) $(1)/usr/bin/python3
 endef
 
 define Host/Configure