arch/arm/src/armv7-a/Toolchain.defs: Correct conditional logic. Was mixing C preprocess and Makefile semantics.

This commit is contained in:
Gregory Nutt
2019-03-20 08:17:38 -06:00
parent d7a602e9b2
commit 33d711166e
+3 -3
View File
@@ -102,11 +102,11 @@ endif
ifeq ($(CONFIG_ARCH_CORTEXA5),y)
ARCHCPUFLAGS += -mcpu=cortex-a5
elif ($(CONFIG_ARCH_CORTEXA7),y)
else ifeq ($(CONFIG_ARCH_CORTEXA7),y)
ARCHCPUFLAGS += -mcpu=cortex-a7
elif ($(CONFIG_ARCH_CORTEXA8),y)
else ifeq ($(CONFIG_ARCH_CORTEXA8),y)
ARCHCPUFLAGS += -mcpu=cortex-a8
elif ($(CONFIG_ARCH_CORTEXA9),y)
else ifeq ($(CONFIG_ARCH_CORTEXA9),y)
ARCHCPUFLAGS += -mcpu=cortex-a9
endif