From: Jason Wu Date: Mon, 24 Feb 2014 03:52:53 +0000 (+1000) Subject: zynq: Fix the build error when SPL is not built. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54fee227ef141214141a226efd17ae0516deaf32;p=thirdparty%2Fu-boot.git zynq: Fix the build error when SPL is not built. Don't generated Boot.bin unless CONFIG_SPL is defined Signed-off-by: Jason Wu Signed-off-by: Michal Simek --- diff --git a/Makefile b/Makefile index d89962d03f8..0419debd8e9 100755 --- a/Makefile +++ b/Makefile @@ -363,8 +363,10 @@ endif endif ifneq ($(CONFIG_ZYNQ),) +ifeq ($(CONFIG_SPL),y) ALL-y += $(obj)boot.bin endif +endif build := -f $(TOPDIR)/scripts/Makefile.build -C