]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
barebox: unbreak custom patch handling after 0eba4759 (packages: apply custom patches...
authorPeter Korsgaard <peter@korsgaard.com>
Mon, 4 May 2015 12:33:18 +0000 (14:33 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Mon, 4 May 2015 12:33:18 +0000 (14:33 +0200)
The commit accidently dropped the continuation character (\), breaking the logic.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
boot/barebox/barebox.mk

index 764791d35f4314bd9bb0268689adeb7e45ebdd8c..294acbd4b5d245f9e645d010ff441157466693fa 100644 (file)
@@ -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