From patchwork Fri Jan 18 14:06:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3/3] python3: Handle properly the pyc and py files on the target From: Maxime Ripard X-Patchwork-Id: 213614 Message-Id: <1358517974-30956-3-git-send-email-maxime.ripard@free-electrons.com> To: buildroot@busybox.net Date: Fri, 18 Jan 2013 15:06:14 +0100 Fixes #5690 Signed-off-by: Maxime Ripard Acked-by: Samuel Martin --- package/python3/python3.mk | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/package/python3/python3.mk b/package/python3/python3.mk index c7e70f6..f62ed43 100644 --- a/package/python3/python3.mk +++ b/package/python3/python3.mk @@ -162,5 +162,27 @@ endef ifneq ($(BR2_PACKAGE_PYTHON),y) PYTHON3_POST_INSTALL_TARGET_HOOKS += PYTHON3_INSTALL_SYMLINK endif + +ifeq ($(BR2_PACKAGE_PYTHON3_PY_ONLY),y) +define PYTHON3_REMOVE_MODULES_FILES + for i in `find $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR) \ + -name __pycache__` ; do \ + rm -rf $$i ; \ + done +endef +endif + +ifeq ($(BR2_PACKAGE_PYTHON3_PYC_ONLY),y) +define PYTHON3_REMOVE_MODULES_FILES + for i in `find $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR) \ + -name *.py` ; do \ + rm -f $$i ; \ + done +endef +endif + +PYTHON3_POST_INSTALL_TARGET_HOOKS += PYTHON3_REMOVE_MODULES_FILES + + $(eval $(autotools-package)) $(eval $(host-autotools-package))