mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-17 15:24:43 +02:00
clean up reject files after copying target/linux/*/files to the kernel tree
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10722 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8b820a5355
commit
84bc683a7b
@ -68,7 +68,10 @@ endef
|
|||||||
define Kernel/Patch/Default
|
define Kernel/Patch/Default
|
||||||
$(if $(QUILT),rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches)
|
$(if $(QUILT),rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches)
|
||||||
if [ -d $(GENERIC_PLATFORM_DIR)/files ]; then $(CP) $(GENERIC_PLATFORM_DIR)/files/* $(LINUX_DIR)/; fi
|
if [ -d $(GENERIC_PLATFORM_DIR)/files ]; then $(CP) $(GENERIC_PLATFORM_DIR)/files/* $(LINUX_DIR)/; fi
|
||||||
if [ -d ./files ]; then $(CP) ./files/* $(LINUX_DIR)/; fi
|
if [ -d ./files ]; then \
|
||||||
|
$(CP) ./files/* $(LINUX_DIR)/; \
|
||||||
|
find $(LINUX_DIR)/ -name \*.rej | xargs rm -f; \
|
||||||
|
fi
|
||||||
$(call PatchDir,$(GENERIC_PATCH_DIR),generic/)
|
$(call PatchDir,$(GENERIC_PATCH_DIR),generic/)
|
||||||
$(call PatchDir,$(PATCH_DIR),platform/)
|
$(call PatchDir,$(PATCH_DIR),platform/)
|
||||||
endef
|
endef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user