|
|
@ -62,7 +62,7 @@ define Py3Package |
|
|
|
$(call shexport,Py3Package/$(1)/filespec) |
|
|
|
|
|
|
|
define Package/$(1)/install |
|
|
|
find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" | xargs rm -f |
|
|
|
find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" -o -name "*\.exe" | xargs rm -f |
|
|
|
@echo "$$$$$$$$$$(call shvar,Py3Package/$(1)/filespec)" | ( \
|
|
|
|
IFS='|'; \
|
|
|
|
while read fop fspec fperm; do \
|
|
|
@ -117,6 +117,6 @@ define Build/Compile/Py3Mod |
|
|
|
, \
|
|
|
|
./setup.py $(2) \
|
|
|
|
) |
|
|
|
find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" | xargs rm -f |
|
|
|
find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" -o -name "*\.exe" | xargs rm -f |
|
|
|
endef |
|
|
|
|