Skip to content
Snippets Groups Projects
Commit 8cb4fc14 authored by Spencer Oliver's avatar Spencer Oliver
Browse files

build: correctly quote m4 parameters


Change-Id: I8fbef892caa78dba5324a8bc28d2a4a4854b1f48
Signed-off-by: default avatarSpencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/544
Tested-by: jenkins
parent 067ac78b
Branches
No related tags found
No related merge requests found
...@@ -772,15 +772,15 @@ else ...@@ -772,15 +772,15 @@ else
fi fi
if test $build_stlink = yes; then if test $build_stlink = yes; then
AC_DEFINE(BUILD_STLINK, 1, [1 if you want the ST-Link JTAG driver.]) AC_DEFINE([BUILD_STLINK], [1], [1 if you want the ST-Link JTAG driver.])
else else
AC_DEFINE(BUILD_STLINK, 0, [0 if you don't want the ST-Link JTAG driver.]) AC_DEFINE([BUILD_STLINK], [0], [0 if you don't want the ST-Link JTAG driver.])
fi fi
if test $build_osbdm = yes; then if test $build_osbdm = yes; then
AC_DEFINE(BUILD_OSBDM, 1, [1 if you want the OSBDM driver.]) AC_DEFINE([BUILD_OSBDM], [1], [1 if you want the OSBDM driver.])
else else
AC_DEFINE(BUILD_OSBDM, 0, [0 if you don't want the OSBDM driver.]) AC_DEFINE([BUILD_OSBDM], [0], [0 if you don't want the OSBDM driver.])
fi fi
if test "$use_internal_jimtcl" = yes; then if test "$use_internal_jimtcl" = yes; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment