From: <abe...@us...> - 2013-01-01 22:46:25
|
Revision: 5849 http://astlinux.svn.sourceforge.net/astlinux/?rev=5849&view=rev Author: abelbeck Date: 2013-01-01 22:46:16 +0000 (Tue, 01 Jan 2013) Log Message: ----------- perl, build tweaks, no functional change Modified Paths: -------------- branches/1.0/package/perl/perl.mk Modified: branches/1.0/package/perl/perl.mk =================================================================== --- branches/1.0/package/perl/perl.mk 2013-01-01 22:09:12 UTC (rev 5848) +++ branches/1.0/package/perl/perl.mk 2013-01-01 22:46:16 UTC (rev 5849) @@ -102,9 +102,10 @@ define PERL_INSTALL_TARGET_CMDS PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(TARGET_DIR)" $(PERL_INSTALL_TARGET_GOALS) # Remove all .pod files - find $(TARGET_DIR)/usr/lib/perl/ -name "*.pod" | xargs rm -f + find $(TARGET_DIR)/usr/lib/perl/ -name "*.pod" -print0 | xargs -0 rm -f # Remove many unicore files - find $(TARGET_DIR)/usr/lib/perl/unicore/* -type d | xargs rm -rf + rm -rf $(TARGET_DIR)/usr/lib/perl/unicore/lib/ + rm -rf $(TARGET_DIR)/usr/lib/perl/unicore/To/ rm -f $(TARGET_DIR)/usr/lib/perl/unicore/Name.pl # ln -sf perl$(PERL_VERSION) $(TARGET_DIR)/usr/bin/perl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |