summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-22 11:18:28 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-22 11:18:28 +0000
commitc77b785505f050c955152059b8244b3db50f27d9 (patch)
tree0db15dd784e375e44613b2680ff6e3f4ecd5cbe7 /configure.in
parent7ccfcdea0b51de1cd23694dee1e72682fc6d757d (diff)
downloadopenocd+libswd-c77b785505f050c955152059b8244b3db50f27d9.tar.gz
openocd+libswd-c77b785505f050c955152059b8244b3db50f27d9.tar.bz2
openocd+libswd-c77b785505f050c955152059b8244b3db50f27d9.tar.xz
openocd+libswd-c77b785505f050c955152059b8244b3db50f27d9.zip
- add missing quotes from CFLAGS_FOR_BUILD
git-svn-id: svn://svn.berlios.de/openocd/trunk@857 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 6f67a4a3..8f9b56f3 100644
--- a/configure.in
+++ b/configure.in
@@ -295,7 +295,7 @@ AC_PROG_RANLIB
AC_MSG_CHECKING([for a C compiler for build tools])
if test $cross_compiling = yes; then
AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
- CFLAGS_FOR_BUILD=-g -O2
+ CFLAGS_FOR_BUILD="-g -O2"
else
CC_FOR_BUILD=$CC
CFLAGS_FOR_BUILD=$CFLAGS