From aa2baa2120c6b661bc5550cfa49364146efc4799 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Mon, 27 Jun 2016 15:28:12 +0300 Subject: [PATCH] python: do not allow packaging of windows exe files Thanks to @ryzhovau for reporting. Signed-off-by: Alexandru Ardelean --- lang/python/Makefile | 2 +- lang/python/files/python-package.mk | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/python/Makefile b/lang/python/Makefile index b96d874a9..307f90720 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -12,7 +12,7 @@ include ./files/python-package.mk PKG_NAME:=python PKG_VERSION:=$(PYTHON_VERSION).$(PYTHON_VERSION_MICRO) -PKG_RELEASE:=8 +PKG_RELEASE:=9 PKG_SOURCE:=Python-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://www.python.org/ftp/python/$(PKG_VERSION) diff --git a/lang/python/files/python-package.mk b/lang/python/files/python-package.mk index 1f6771845..ff0c2dcaa 100644 --- a/lang/python/files/python-package.mk +++ b/lang/python/files/python-package.mk @@ -45,7 +45,7 @@ define PyPackage $(call shexport,PyPackage/$(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,PyPackage/$(1)/filespec)" | ( \ IFS='|'; \ while read fop fspec fperm; do \ @@ -103,7 +103,7 @@ define Build/Compile/PyMod , \ ./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 define PyMod/Default