diff mbox

perl: removes useless files in target tree

Message ID 1401821218-5716-1-git-send-email-francois.perrad@gadz.org
State Accepted
Headers show

Commit Message

Francois Perrad June 3, 2014, 6:46 p.m. UTC
$(TARGET_DIR)/usr/lib/perl5/$(PERL_VERSION)/$(PERL_ARCHNAME)/CORE contains include files.
*.bs & .packlist files come with perl or perl/cpan packages.

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 Makefile | 3 +++
 1 file changed, 3 insertions(+)

Comments

Thomas Petazzoni June 8, 2014, 3:23 p.m. UTC | #1
Dear Francois Perrad,

On Tue,  3 Jun 2014 20:46:58 +0200, Francois Perrad wrote:
> $(TARGET_DIR)/usr/lib/perl5/$(PERL_VERSION)/$(PERL_ARCHNAME)/CORE contains include files.
> *.bs & .packlist files come with perl or perl/cpan packages.
> 
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  Makefile | 3 +++
>  1 file changed, 3 insertions(+)

Applied, thanks!

Thomas
diff mbox

Patch

diff --git a/Makefile b/Makefile
index 0b4264a..8bfba51 100644
--- a/Makefile
+++ b/Makefile
@@ -554,6 +554,9 @@  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)/$(PERL_ARCHNAME)/CORE
+	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' | \