From 8721c03a7f849af3c7f6577d6e77086332bdcc7f Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Mon, 4 May 2015 14:33:18 +0200 Subject: [PATCH] barebox: unbreak custom patch handling after 0eba4759 (packages: apply custom patches using *.patch instead of -*.patch) The commit accidently dropped the continuation character (\), breaking the logic. Signed-off-by: Peter Korsgaard --- boot/barebox/barebox.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/barebox/barebox.mk b/boot/barebox/barebox.mk index 764791d35..294acbd4b 100644 --- a/boot/barebox/barebox.mk +++ b/boot/barebox/barebox.mk @@ -30,7 +30,7 @@ BAREBOX_LICENSE_FILES = COPYING ifneq ($(call qstrip,$(BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR)),) define BAREBOX_APPLY_CUSTOM_PATCHES - $(APPLY_PATCHES) $(@D) + $(APPLY_PATCHES) $(@D) \ $(BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR) \*.patch endef