mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/make_V_flag' into 'master'
gnu make: Make V= behaviour consistent with V=0 Closes IDFGH-1175 See merge request idf/esp-idf!5334
This commit is contained in:
commit
c165335554
@ -91,7 +91,9 @@ COMPONENT_SUBMODULES ?=
|
|||||||
COMPILING_COMPONENT_PATH := $(COMPONENT_PATH)
|
COMPILING_COMPONENT_PATH := $(COMPONENT_PATH)
|
||||||
|
|
||||||
define includeCompBuildMakefile
|
define includeCompBuildMakefile
|
||||||
$(if $(V),$(info including $(1)/Makefile.componentbuild...))
|
ifeq ("$(V)","1")
|
||||||
|
$$(info including $(1)/Makefile.componentbuild...)
|
||||||
|
endif
|
||||||
COMPONENT_PATH := $(1)
|
COMPONENT_PATH := $(1)
|
||||||
include $(1)/Makefile.componentbuild
|
include $(1)/Makefile.componentbuild
|
||||||
endef
|
endef
|
||||||
|
@ -502,7 +502,9 @@ $(eval $(call ldgen_create_commands))
|
|||||||
# Include any Makefile.projbuild file letting components add
|
# Include any Makefile.projbuild file letting components add
|
||||||
# configuration at the project level
|
# configuration at the project level
|
||||||
define includeProjBuildMakefile
|
define includeProjBuildMakefile
|
||||||
$(if $(V),$$(info including $(1)/Makefile.projbuild...))
|
ifeq ("$(V)","1")
|
||||||
|
$$(info including $(1)/Makefile.projbuild...)
|
||||||
|
endif
|
||||||
COMPONENT_PATH := $(1)
|
COMPONENT_PATH := $(1)
|
||||||
include $(1)/Makefile.projbuild
|
include $(1)/Makefile.projbuild
|
||||||
endef
|
endef
|
||||||
|
Loading…
Reference in New Issue
Block a user