diff options
author | 2014-07-29 20:18:14 +0200 | |
---|---|---|
committer | 2014-07-29 20:22:37 +0200 | |
commit | 4387568bbfa1c3f533c72993cbaba1f7f4e6e015 (patch) | |
tree | f04b69fa7c8a9aef7e23df1326892d2929914667 /Makefile | |
parent | edeee941c8e20fa5aad8edd5448553e89e7e858c (diff) | |
download | buildroot-4387568bbfa1c3f533c72993cbaba1f7f4e6e015.tar.gz buildroot-4387568bbfa1c3f533c72993cbaba1f7f4e6e015.tar.bz2 |
perl: refactor with TARGET_FINALIZE_HOOKS
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -577,11 +577,6 @@ ifeq ($(BR2_PACKAGE_PYTHON_PYC_ONLY)$(BR2_PACKAGE_PYTHON3_PYC_ONLY),y) find $(TARGET_DIR)/usr/lib/ -name '*.py' -print0 | xargs -0 rm -f endif rm -rf $(TARGET_DIR)/usr/lib/luarocks - rm -rf $(TARGET_DIR)/usr/lib/perl5/$(PERL_VERSION)/pod - rm -rf $(TARGET_DIR)/usr/lib/perl5/$(PERL_VERSION)/$(PERL_ARCHNAME)/CORE - find $(TARGET_DIR)/usr/lib/perl5/ -name 'extralibs.ld' -print0 | xargs -0 rm -f - find $(TARGET_DIR)/usr/lib/perl5/ -name '*.bs' -print0 | xargs -0 rm -f - find $(TARGET_DIR)/usr/lib/perl5/ -name '.packlist' -print0 | xargs -0 rm -f $(STRIP_FIND_CMD) | xargs $(STRIPCMD) 2>/dev/null || true if test -d $(TARGET_DIR)/lib/modules; then \ find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \ |