Browse Source

python: fix python-dev clash with python-base

Both want to install libpython.so.
python-dev should install libpython.a

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
lilik-openwrt-22.03
Alexandru Ardelean 8 years ago
parent
commit
6c4dcf4446
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lang/python/files/python-package-dev.mk

+ 2
- 2
lang/python/files/python-package-dev.mk View File

@ -12,9 +12,9 @@ $(call Package/python/Default)
endef
define PyPackage/python-dev/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_DIR) $(1)/usr/bin $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/bin/python*config $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpython$(PYTHON_VERSION).so* $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/python$(PYTHON_VERSION)/config/libpython$(PYTHON_VERSION).a $(1)/usr/lib
endef
$(eval $(call PyBasePackage,python-dev, \


Loading…
Cancel
Save