diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-12 19:18:38 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-12 19:18:38 +0000 |
commit | 99ba699421c041858df7fcb50379e3b21798ae12 (patch) | |
tree | 76c846e43279bd22c30a82c78efcc81ca125e6a2 /target/sdk | |
parent | a5628b31a4092369fcec6966fbddddd282cd6d08 (diff) |
revert find | xargs => find | exec changes - this is completely unnecessary and introduces additional dependencies that we do not need
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6942 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/sdk')
-rw-r--r-- | target/sdk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/sdk/Makefile b/target/sdk/Makefile index c0fc027cb..9f1263186 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); \ ) |