浏览代码

u-boot: fix custom patch handling

Peter Korsgaard 17 年之前
父节点
当前提交
6d5ecc1e51
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      target/u-boot/Makefile.in

+ 1 - 1
target/u-boot/Makefile.in

@@ -40,7 +40,7 @@ $(U_BOOT_DIR)/.patched: $(U_BOOT_DIR)/.unpacked
 ifneq ($(strip $(BR2_TARGET_UBOOT_CUSTOM_PATCH)),"")
 	@mkdir -p $(U_BOOT_PATCH_DIR)
 	cp -dpr $(BR2_TARGET_UBOOT_CUSTOM_PATCH) $(U_BOOT_PATCH_DIR)
-	toolchain/patch-kernel.sh $(U_BOOT_DIR) $(U_BOOT_PATCH_DIR) *.patch
+	toolchain/patch-kernel.sh $(U_BOOT_DIR) $(U_BOOT_PATCH_DIR) \*.patch
 endif
 	touch $@