diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-01 20:08:18 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-01 20:08:18 +0000 |
commit | 7ec35f05dfd43a7482f7cebae0fab2ead56b3b07 (patch) | |
tree | 658aa646b8445fd885f5a5fac5765f04e8f6a747 /openwrt/target/linux/Makefile | |
parent | 843138e1d5ef635ba54e29380264915cac9f38c4 (diff) |
fix some typos
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1824 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/linux/Makefile')
-rw-r--r-- | openwrt/target/linux/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openwrt/target/linux/Makefile b/openwrt/target/linux/Makefile index 01286405b8..e9edba256e 100644 --- a/openwrt/target/linux/Makefile +++ b/openwrt/target/linux/Makefile @@ -51,12 +51,12 @@ $(BIN_DIR)/$(IB_NAME).tar.bz2: rm -rf $(IB_DIR) mkdir -p $(IB_DIR)/packages mkdir -p $(IB_DIR)/scripts - cp -dpR ./imagebuilder/* $(IB_DIR)/ - cp -dpR $(TOPDIR)/bin/packages/*.ipk $(IB_DIR)/packages/ + cp -fpR ./imagebuilder/* $(IB_DIR)/ + cp -fpR $(TOPDIR)/bin/packages/*.ipk $(IB_DIR)/packages/ cp $(TOPDIR)/scripts/ipkg $(IB_DIR)/scripts/ $(MAKE) install-ib cp $(TOPDIR)/rules.mk $(IB_DIR) - cp -dpR ./image $(IB_DIR)/ + cp -fpR ./image $(IB_DIR)/ cp $(TOPDIR)/.config $(IB_DIR)/ find $(IB_DIR) -name CVS | xargs rm -rf (cd $(BUILD_DIR); tar c $(IB_NAME) | bzip2 -c > $(BIN_DIR)/$(IB_NAME).tar.bz2) |