From 150bbf0c26692730b9365feb98b74bdb468215b8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20B=C3=BCsch?= Date: Sat, 2 Oct 2010 22:57:03 +0000 Subject: [PATCH] vim: Do not compress the temporary docs tarball. That just wastes time. If we want to save space, we should get rid of the temporary tarball completely. SVN-Revision: 23188 --- utils/vim/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/vim/Makefile b/utils/vim/Makefile index 9b74838d4c..611843e6d4 100644 --- a/utils/vim/Makefile +++ b/utils/vim/Makefile @@ -118,7 +118,7 @@ endif define Build/Compile/vim-runtime $(MAKE) -C $(PKG_BUILD_DIR)/src DESTDIR="$(PKG_INSTALL_DIR)" installrtbase - (cd $(PKG_INSTALL_DIR) && tar -czf $(PKG_BUILD_DIR)/docs.tgz ./usr/share/vim/vim$(VIMVER)/doc) + (cd $(PKG_INSTALL_DIR) && tar -cf $(PKG_BUILD_DIR)/docs.tar ./usr/share/vim/vim$(VIMVER)/doc) rm -rf $(PKG_INSTALL_DIR)/usr/share/vim/vim$(VIMVER)/doc rm -rf $(PKG_INSTALL_DIR)/usr/man endef @@ -153,7 +153,7 @@ define Package/vim-runtime/install endef define Package/vim-help/install - tar -C $(1) -xzf $(PKG_BUILD_DIR)/docs.tgz + tar -C $(1) -xf $(PKG_BUILD_DIR)/docs.tar endef $(eval $(call BuildPackage,vim)) -- 2.30.2