From 05f8d6edf06c93dadab34f14a5fad48449dd7eda Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Thu, 2 Mar 2017 15:24:14 +0200 Subject: [PATCH] python,python3: drop remove .pyc & .pyo files We'll control in the install phase what we ship [byte-codes or source files] Signed-off-by: Alexandru Ardelean --- lang/python/files/python-package.mk | 4 ++-- lang/python3/files/python3-package.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lang/python/files/python-package.mk b/lang/python/files/python-package.mk index dfc07a612dc815..4f05dfebbc71a7 100644 --- a/lang/python/files/python-package.mk +++ b/lang/python/files/python-package.mk @@ -54,7 +54,7 @@ define PyPackage define Package/$(1)/install $(call PyPackage/$(1)/install,$$(1)) - find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" -o -name "*\.exe" | xargs rm -f + find $(PKG_INSTALL_DIR) -name "*\.exe" | xargs rm -f if [ -e files/python-package-install.sh ] ; then \ $(SHELL) files/python-package-install.sh \ "$(PKG_INSTALL_DIR)" "$$(1)" \ @@ -103,7 +103,7 @@ define Build/Compile/PyMod cd $(PKG_BUILD_DIR)/$(strip $(1)), \ ./setup.py $(2), \ $(3)) - find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" -o -name "*\.exe" | xargs rm -f + find $(PKG_INSTALL_DIR) -name "*\.exe" | xargs rm -f endef define PyBuild/Compile/Default diff --git a/lang/python3/files/python3-package.mk b/lang/python3/files/python3-package.mk index f1f3ff54624cfd..1ed8b2c18afa7a 100644 --- a/lang/python3/files/python3-package.mk +++ b/lang/python3/files/python3-package.mk @@ -54,7 +54,7 @@ define Py3Package define Package/$(1)/install $(call Py3Package/$(1)/install,$$(1)) - find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" -o -name "*\.exe" | xargs rm -f + 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)" \ @@ -103,7 +103,7 @@ define Build/Compile/Py3Mod cd $(PKG_BUILD_DIR)/$(strip $(1)), \ ./setup.py $(2), \ $(3)) - find $(PKG_INSTALL_DIR) -name "*\.pyc" -o -name "*\.pyo" -o -name "*\.exe" | xargs rm -f + find $(PKG_INSTALL_DIR) -name "*\.exe" | xargs rm -f endef define Py3Build/Compile/Default