From: Will Newton Date: Thu, 17 Sep 2009 16:45:11 +0000 (+0100) Subject: python: Don't delete .py files unless asked. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c2b9a4a2df1d42ab8ebfaf340bbfeeed1268c48;p=buildroot.git python: Don't delete .py files unless asked. If we have set BR2_PACKAGE_PYTHON_PY_ONLY or BR2_PACKAGE_PYTHON_PY_PYC we want .py files to be left on the target, whatever the value of BR2_PACKAGE_PYTHON_DEV. Signed-off-by: Will Newton --- diff --git a/package/python/python.mk b/package/python/python.mk index cd1ccece3c..95586ad64c 100644 --- a/package/python/python.mk +++ b/package/python/python.mk @@ -155,7 +155,6 @@ endif ifneq ($(BR2_PACKAGE_PYTHON_DEV),y) rm -rf $(TARGET_DIR)/usr/include/python$(PYTHON_VERSION_MAJOR) rm -rf $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/config - find $(TARGET_DIR)/usr/lib/ -name '*.py' -exec rm {} \; endif ifneq ($(BR2_PACKAGE_PYTHON_BSDDB),y) rm -rf $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/bsddb