From 5e9d46791b1609b6798a5511e707da5c4d6997b9 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Tue, 8 Apr 2014 20:10:57 +0000 Subject: [PATCH] Put proper ${} around variable expansion. This fixes the build on 9.2 with fmake (which complained). Not sure why bmake didn't complain though... --- sys/conf/Makefile.arm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/conf/Makefile.arm b/sys/conf/Makefile.arm index 51659677ef8c..562d15227eca 100644 --- a/sys/conf/Makefile.arm +++ b/sys/conf/Makefile.arm @@ -44,10 +44,10 @@ CFLAGS += -mno-thumb-interwork .endif .if empty(DDB_ENABLED) -.if MK_ARM_EABI == "no" && ${COMPILER_TYPE} == "gcc" +.if ${MK_ARM_EABI} == "no" && ${COMPILER_TYPE} == "gcc" CFLAGS += -mno-apcs-frame .endif -.elif MK_ARM_EABI != "no" +.elif ${MK_ARM_EABI} != "no" CFLAGS += -funwind-tables .if ${COMPILER_TYPE} == "clang" # clang requires us to tell it to emit assembly with unwind information