From 3e91dd1bd509f3691a65b79d8ef2d02630aae479 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 12 Apr 2007 19:18:38 +0000 Subject: revert find | xargs => find | exec changes - this is completely unnecessary and introduces additional dependencies that we do not need SVN-Revision: 6942 --- target/sdk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'target/sdk') diff --git a/target/sdk/Makefile b/target/sdk/Makefile index c0fc027..9f12631 100644 --- a/target/sdk/Makefile +++ b/target/sdk/Makefile @@ -35,8 +35,8 @@ $(BIN_DIR)/$(SDK_NAME).tar.bz2: clean $(CP) ./files/package/rules.mk $(SDK_BUILD_DIR)/package/ echo OPENWRTVERSION:=$(OPENWRTVERSION) > $(SDK_BUILD_DIR)/.version.mk rm -rf $(SDK_BUILD_DIR)/staging_dir*/ccache - find $(SDK_BUILD_DIR) -name .svn -exec rm -rf {} + - find $(SDK_BUILD_DIR) -name CVS -exec rm -rf {} + + find $(SDK_BUILD_DIR) -name .svn | xargs -r rm -rf + find $(SDK_BUILD_DIR) -name CVS | xargs -r rm -rf (cd $(BUILD_DIR); \ tar cfj $@ $(SDK_NAME); \ ) -- cgit v1.1