build: make zephyrmake exposed with V=1
Remove extra @ which would always silence output from zephyrmake. Every instance of zephyrmake is prefixed with a $(Q) so V=1 will expose them Change-Id: I8e622cc2175f645897ac78d607486d37c0af1618 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
b6b39f63d9
commit
5ccf5298b5
|
@ -62,7 +62,7 @@ endif
|
|||
|
||||
export CFLAGS
|
||||
|
||||
zephyrmake = @+$(MAKE) -C $(ZEPHYR_BASE) O=$(1) \
|
||||
zephyrmake = +$(MAKE) -C $(ZEPHYR_BASE) O=$(1) \
|
||||
PROJECT=$(PROJECT_BASE) SOURCE_DIR=$(SOURCE_DIR) $(2)
|
||||
|
||||
BOARDCONFIG = $(O)/.board_$(BOARD)
|
||||
|
|
Loading…
Reference in New Issue