build: correctly quote m4 parameters
Change-Id: I8fbef892caa78dba5324a8bc28d2a4a4854b1f48 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/544 Tested-by: jenkins
This commit is contained in:
parent
067ac78b61
commit
8cb4fc1420
|
@ -772,15 +772,15 @@ else
|
|||
fi
|
||||
|
||||
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
|
||||
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
|
||||
|
||||
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
|
||||
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
|
||||
|
||||
if test "$use_internal_jimtcl" = yes; then
|
||||
|
|
Loading…
Reference in New Issue