1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-25 09:07:30 +02:00

more [6849]

SVN-Revision: 6850
This commit is contained in:
Mike Baker 2007-04-03 13:59:07 +00:00
parent 0359c6222e
commit 3295536b02
2 changed files with 4 additions and 4 deletions

View File

@ -33,8 +33,8 @@ $(BIN_DIR)/$(IB_NAME).tar.bz2: clean
$(CP) $(TOPDIR)/target/linux/* $(IB_BUILD_DIR)/target/linux
rm -rf $(IB_BUILD_DIR)/target/linux/*/patches
-cp $(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)/* $(IB_BUILD_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD) # don't copy subdirectories here
find $(IB_BUILD_DIR) -name .svn -exec rm -rf {} \;
find $(IB_BUILD_DIR) -name CVS -exec rm -rf {} \;
find $(IB_BUILD_DIR) -name .svn -exec rm -rf {} +
find $(IB_BUILD_DIR) -name CVS -exec rm -rf {} +
(cd $(BUILD_DIR); \
tar cfj $@ $(IB_NAME); \
)

View File

@ -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 -exec rm -rf {} +
find $(SDK_BUILD_DIR) -name CVS -exec rm -rf {} +
(cd $(BUILD_DIR); \
tar cfj $@ $(SDK_NAME); \
)