commit fec6a37989d3a7e1092da1ab919c2789973f2b5b
parent 5ab3b37710e7f251f1735dd691e68a9269effa9b
Author: sbyx <steven@midlink.org>
Date: Tue, 21 Oct 2014 08:55:11 +0200
Merge pull request #449 from commodo/python-update-3
python: fix source folder for libpython
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lang/python/Makefile b/lang/python/Makefile
@@ -176,7 +176,7 @@ define Build/InstallDev
$(1)/usr/include/
$(CP) \
$(STAGING_DIR_HOST)/lib/python$(PYTHON_VERSION) \
- $(PKG_BUILD_DIR)/libpython$(PYTHON_VERSION).so* \
+ $(PKG_INSTALL_DIR)/usr/lib/libpython$(PYTHON_VERSION).so* \
$(1)/usr/lib/
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/python$(PYTHON_VERSION)/config \
@@ -389,7 +389,7 @@ endef
define PyPackage/python/install
$(LN) python$(PYTHON_VERSION) $(1)/usr/bin/python
$(LN) python$(PYTHON_VERSION) $(1)/usr/bin/python2
- $(CP) $(PKG_BUILD_DIR)/libpython$(PYTHON_VERSION).so* $(1)/usr/lib/
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpython$(PYTHON_VERSION).so* $(1)/usr/lib/
endef
define PyPackage/python-doc/filespec