From: Andreas Fritiofson Date: Sat, 11 Aug 2012 19:43:06 +0000 (+0200) Subject: configure.ac: Fix misspelled variable X-Git-Tag: v0.6.0-rc2~30 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=c58c24c42f91b5a2c2ad138db12f1ec1ef16b270;hp=aec561c7c6d290b95f76ae89452e48934d3059e3 configure.ac: Fix misspelled variable Nothing checks it against 0, so it hasn't caused any problems. Change-Id: I5e349299c37fb72bab811d78992f6de3731a986a Signed-off-by: Andreas Fritiofson Reviewed-on: http://openocd.zylin.com/774 Tested-by: jenkins Reviewed-by: Spencer Oliver Reviewed-by: Freddie Chopin --- diff --git a/configure.ac b/configure.ac index 1b872b3f00..13152bf2d9 100644 --- a/configure.ac +++ b/configure.ac @@ -816,7 +816,7 @@ if test $build_remote_bitbang = yes; then build_bitbang=yes AC_DEFINE([BUILD_REMOTE_BITBANG], [1], [1 if you want the Remote Bitbang JTAG driver.]) else - AC_DEFINE([BUILD_REMOTE_BITBNAG], [0], [0 if you don't want the Remote Bitbang JTAG driver.]) + AC_DEFINE([BUILD_REMOTE_BITBANG], [0], [0 if you don't want the Remote Bitbang JTAG driver.]) fi #-- Deal with MingW/Cygwin FTD2XX issues