Browse Source

Merge pull request #8251 from jefferyto/python3-twisted-install

python-twisted: Fix python3 install
lilik-openwrt-22.03
Hannu Nyman 5 years ago
committed by GitHub
parent
commit
d1d0fac7d8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lang/python/python-twisted/Makefile

+ 2
- 2
lang/python/python-twisted/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=python-twisted
PKG_VERSION:=18.9.0
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE:=Twisted-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/T/Twisted
@ -91,7 +91,7 @@ define Py3Package/python3-twisted/install
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
for bin in $(1)/usr/bin/*; do \
mv $$$$$$$$bin $$$$$$$${bin}3 ; \
mv $$$$bin $$$${bin}3 ; \
done
endef


Loading…
Cancel
Save