mirror of
https://github.com/openwrt/packages.git
synced 2025-12-19 17:11:21 +00:00
python,python3: simplify path to install shell-script
Now that all files are exported, it makes sense to just reference the script directly. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
@@ -69,20 +69,10 @@ define Py3Package
|
||||
define Package/$(1)/install
|
||||
$(call Py3Package/$(1)/install,$$(1))
|
||||
find $(PKG_INSTALL_DIR) -name "*\.exe" | xargs rm -f
|
||||
if [ -e files/python3-package-install.sh ] ; then \
|
||||
$(SHELL) files/python3-package-install.sh \
|
||||
"$(PKG_INSTALL_DIR)" "$$(1)" \
|
||||
"$(HOST_PYTHON3_BIN)" "$$(2)" \
|
||||
"$$$$$$$$$$(call shvar,Py3Package/$(1)/filespec)" ; \
|
||||
elif [ -e $(STAGING_DIR)/mk/python3-package-install.sh ] ; then \
|
||||
$(SHELL) $(STAGING_DIR)/mk/python3-package-install.sh \
|
||||
"$(PKG_INSTALL_DIR)" "$$(1)" \
|
||||
"$(HOST_PYTHON3_BIN)" "$$(2)" \
|
||||
"$$$$$$$$$$(call shvar,Py3Package/$(1)/filespec)" ; \
|
||||
else \
|
||||
echo "No 'python3-package-install.sh' script found" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
$(SHELL) $(python3_mk_path)python3-package-install.sh \
|
||||
"$(PKG_INSTALL_DIR)" "$$(1)" \
|
||||
"$(HOST_PYTHON3_BIN)" "$$(2)" \
|
||||
"$$$$$$$$$$(call shvar,Py3Package/$(1)/filespec)"
|
||||
endef
|
||||
|
||||
define Package/$(1)-src/install
|
||||
|
||||
Reference in New Issue
Block a user