diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-01-11 21:44:29 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-01-25 08:59:57 +0100 |
commit | b0c86bcc57b1bd714dc0d1cc719ffdfd6f0663dd (patch) | |
tree | e7117ba65e6f0cdfcfa458d6e89ca9b2528c2a9d | |
parent | e3418f69cf2f17d54dfb521adedbe8abf6e35927 (diff) |
Remove .py or .pyc depending on Python configuration
We do this at a global level since several packages can install
Python modules.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -438,6 +438,12 @@ ifneq ($(BR2_HAVE_DOCUMENTATION),y) rm -rf $(TARGET_DIR)/usr/share/gtk-doc -rmdir $(TARGET_DIR)/usr/share 2>/dev/null endif +ifeq ($(BR2_PACKAGE_PYTHON_PY_ONLY),y) + find $(TARGET_DIR)/usr/lib/ -name '*.pyc' -print0 | xargs -0 rm -f +endif +ifeq ($(BR2_PACKAGE_PYTHON_PYC_ONLY),y) + find $(TARGET_DIR)/usr/lib/ -name '*.py' -print0 | xargs -0 rm -f +endif find $(TARGET_DIR) -type f -perm +111 '!' -name 'libthread_db*.so*' | \ xargs $(STRIPCMD) 2>/dev/null || true find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \ |