diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-22 11:18:28 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-22 11:18:28 +0000 |
commit | c77b785505f050c955152059b8244b3db50f27d9 (patch) | |
tree | 0db15dd784e375e44613b2680ff6e3f4ecd5cbe7 | |
parent | 7ccfcdea0b51de1cd23694dee1e72682fc6d757d (diff) |
- add missing quotes from CFLAGS_FOR_BUILD
git-svn-id: svn://svn.berlios.de/openocd/trunk@857 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | configure.in | 2 |
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 |