olimex-stm32-p407: update HAVE_MODSYMS judge for protected build

Fix build break as below:
arm-none-eabi-ld: stm32_bringup.c:(.text+0x50): undefined reference to `g_mod_exports'

Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
This commit is contained in:
liuhaitao 2020-05-19 17:31:43 +08:00 committed by Abdelatif Guettouche
parent 48da64f9c2
commit a3b643fdc1

View File

@ -134,7 +134,7 @@
/* Module symbol table */
#if !defined(CONFIG_EXAMPLES_MODULE) || defined(CONFIG_BUILD_FLAT)
#if !defined(CONFIG_EXAMPLES_MODULE) || !defined(CONFIG_BUILD_FLAT)
# undef HAVE_MODSYMS
#endif