Incorrect use of #ifdef in component.mk causes bootloader build flags for esp32 component, even for app builds
This commit is contained in:
parent
244fb94290
commit
5ae2c0d0ff
1 changed files with 2 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
||||||
# Component Makefile
|
# Component Makefile
|
||||||
#
|
#
|
||||||
|
|
||||||
#ifdef IS_BOOTLOADER_BUILD
|
ifdef IS_BOOTLOADER_BUILD
|
||||||
CFLAGS += -DBOOTLOADER_BUILD
|
CFLAGS += -DBOOTLOADER_BUILD
|
||||||
#endif
|
endif
|
||||||
|
|
||||||
COMPONENT_SRCDIRS := . hwcrypto
|
COMPONENT_SRCDIRS := . hwcrypto
|
||||||
LIBS := core rtc
|
LIBS := core rtc
|
||||||
|
|
Loading…
Reference in a new issue