summaryrefslogtreecommitdiffstats
path: root/sys/conf
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2014-04-08 20:10:57 +0000
committerimp <imp@FreeBSD.org>2014-04-08 20:10:57 +0000
commitefe0f3c8dbe131cdb9f8adc9a2e7fd16cf6c69f3 (patch)
treeaed474bec7d386d12debd5485af4b2a42215502c /sys/conf
parent168c6df7082c4326c2d963b14020ea6f5ed38c3a (diff)
downloadFreeBSD-src-efe0f3c8dbe131cdb9f8adc9a2e7fd16cf6c69f3.zip
FreeBSD-src-efe0f3c8dbe131cdb9f8adc9a2e7fd16cf6c69f3.tar.gz
Put proper ${} around variable expansion. This fixes the build on 9.2
with fmake (which complained). Not sure why bmake didn't complain though...
Diffstat (limited to 'sys/conf')
-rw-r--r--sys/conf/Makefile.arm4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/Makefile.arm b/sys/conf/Makefile.arm
index 5165967..562d152 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
OpenPOWER on IntegriCloud