Skip to content

Commit 5b9a086

Browse files
committed
ARC: fix broken makefile construct
Signed-off-by: Vineet Gupta <[email protected]>
1 parent 5cdbde4 commit 5b9a086

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arc/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ endif
1515
KBUILD_DEFCONFIG := nsim_700_defconfig
1616

1717
cflags-y += -fno-common -pipe -fno-builtin -D__linux__
18-
cflags-${CONFIG_ISA_ARCOMPACT} += -mA7
19-
cflags-${CONFIG_ISA_ARCV2} += -mcpu=archs
18+
cflags-$(CONFIG_ISA_ARCOMPACT) += -mA7
19+
cflags-$(CONFIG_ISA_ARCV2) += -mcpu=archs
2020

2121
ifdef CONFIG_ARC_CURR_IN_REG
2222
# For a global register defintion, make sure it gets passed to every file

0 commit comments

Comments
 (0)