Просмотр исходного кода

clean up reject files after copying target/linux/*/files to the kernel tree

SVN-Revision: 10722
Felix Fietkau 18 лет назад
Родитель
Сommit
03354353af
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      include/quilt.mk

+ 4 - 1
include/quilt.mk

@@ -68,7 +68,10 @@ endef
 define Kernel/Patch/Default
 	$(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 ./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,$(PATCH_DIR),platform/)
 endef