summaryrefslogtreecommitdiffstats
path: root/Source/cmTryCompileCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-11-21 21:11:44 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-11-21 21:11:44 (GMT)
commitfc68dd61c32ec47e6dc19c322ea900092a6e30e2 (patch)
treebd0d29afb7a6328e7c692e3f99b61f8c5f42a76b /Source/cmTryCompileCommand.cxx
parentddf68089567cacf287ab7409e5df55026185986c (diff)
downloadCMake-fc68dd61c32ec47e6dc19c322ea900092a6e30e2.zip
CMake-fc68dd61c32ec47e6dc19c322ea900092a6e30e2.tar.gz
CMake-fc68dd61c32ec47e6dc19c322ea900092a6e30e2.tar.bz2
fix for c flags
Diffstat (limited to 'Source/cmTryCompileCommand.cxx')
-rw-r--r--Source/cmTryCompileCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx
index 5dce747..dd91fe8 100644
--- a/Source/cmTryCompileCommand.cxx
+++ b/Source/cmTryCompileCommand.cxx
@@ -153,7 +153,7 @@ int cmTryCompileCommand::CoreTryCompileCode(
return -1;
}
- fprintf(fout, "SET(CMAKE_C_FLAGS \"${CMAKE_C_FLAGS} ${COMPILE_DEFINITIONS}\"\")\n");
+ fprintf(fout, "SET(CMAKE_C_FLAGS \"${CMAKE_C_FLAGS} ${COMPILE_DEFINITIONS}\")\n");
fprintf(fout, "SET(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} ${COMPILE_DEFINITIONS}\")\n");
fprintf(fout, "INCLUDE_DIRECTORIES(${INCLUDE_DIRECTORIES})\n");
fprintf(fout, "LINK_DIRECTORIES(${LINK_DIRECTORIES})\n");