From: Stephen Warren Date: Fri, 19 Jul 2019 17:21:17 +0000 (-0600) Subject: Makefile: fix implementation of BINMAN_DEBUG X-Git-Tag: v2025.01-rc5-pxa1908~2857^2 X-Git-Url: http://git.dujemihanovic.xyz/html/static/gitweb.css?a=commitdiff_plain;h=4f4fb85ec0bfe45da11aa23ada565387ee676e80;p=u-boot.git Makefile: fix implementation of BINMAN_DEBUG binman only accepts the -D argument early on the command-line, yet the Makefile currently passes it near the end. This causes the build to fail if this feature is used. Re-order the command-line to fix this. Signed-off-by: Stephen Warren Reviewed-by: Simon Glass --- diff --git a/Makefile b/Makefile index 704579bec1..5906871ef2 100644 --- a/Makefile +++ b/Makefile @@ -1196,9 +1196,10 @@ u-boot.ldr: u-boot # --------------------------------------------------------------------------- # Use 'make BINMAN_DEBUG=1' to enable debugging quiet_cmd_binman = BINMAN $@ -cmd_binman = $(srctree)/tools/binman/binman build -u -d u-boot.dtb -O . -m \ +cmd_binman = $(srctree)/tools/binman/binman $(if $(BINMAN_DEBUG),-D) \ + build -u -d u-boot.dtb -O . -m \ -I . -I $(srctree) -I $(srctree)/board/$(BOARDDIR) \ - $(if $(BINMAN_DEBUG),-D) $(BINMAN_$(@F)) + $(BINMAN_$(@F)) OBJCOPYFLAGS_u-boot.ldr.hex := -I binary -O ihex