summaryrefslogtreecommitdiff
path: root/target/u-boot
diff options
context:
space:
mode:
authorUlf Samuelsson <ulf.samuelsson@atmel.com>2009-01-20 08:11:26 +0000
committerUlf Samuelsson <ulf.samuelsson@atmel.com>2009-01-20 08:11:26 +0000
commit8a97f125abaaafe3f88056d06d29990032dd3301 (patch)
treeaaa1b3ee6c2ed8d881e1374d82554f91982f45ab /target/u-boot
parent877a486ac905762984823c7292486b998ad1a8a8 (diff)
U_BOOT_ARCH_PATCH_DIR should contain a value or should not be defined, empty string is not allowed
Diffstat (limited to 'target/u-boot')
-rw-r--r--target/u-boot/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/u-boot/Makefile.in b/target/u-boot/Makefile.in
index 1386e03a7..77481760f 100644
--- a/target/u-boot/Makefile.in
+++ b/target/u-boot/Makefile.in
@@ -88,7 +88,7 @@ $(U_BOOT_DIR)/.patched: $(U_BOOT_DIR)/.unpacked
toolchain/patch-kernel.sh $(U_BOOT_DIR) target/u-boot/$(U_BOOT_VERSION) \
u-boot-$(U_BOOT_VERSION)-\*.patch \
u-boot-$(U_BOOT_VERSION)-\*.patch.$(ARCH)
-ifneq ($(strip $(U_BOOT_ARCH_PATCH_DIR)),"")
+ifneq ($(strip $(U_BOOT_ARCH_PATCH_DIR)),)
toolchain/patch-kernel.sh $(U_BOOT_DIR) $(U_BOOT_ARCH_PATCH_DIR) \*.patch
endif
ifneq ($(strip $(BR2_TARGET_UBOOT_CUSTOM_PATCH)),"")