Date: Tue, 8 Apr 2014 20:10:57 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264270 - head/sys/conf Message-ID: <201404082010.s38KAvj6093424@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Tue Apr 8 20:10:57 2014 New Revision: 264270 URL: http://svnweb.freebsd.org/changeset/base/264270 Log: Put proper ${} around variable expansion. This fixes the build on 9.2 with fmake (which complained). Not sure why bmake didn't complain though... Modified: head/sys/conf/Makefile.arm Modified: head/sys/conf/Makefile.arm ============================================================================== --- head/sys/conf/Makefile.arm Tue Apr 8 20:10:22 2014 (r264269) +++ head/sys/conf/Makefile.arm Tue Apr 8 20:10:57 2014 (r264270) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404082010.s38KAvj6093424>