summaryrefslogtreecommitdiff
path: root/Modules/TestCXXAcceptsFlag.cmake
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-20 16:31:34 -0400
committerKen Martin <ken.martin@kitware.com>2005-06-20 16:31:34 -0400
commite1e7b114370aed206a741d30e43bb83f16d36c4e (patch)
tree0f70ae41c0fe319ea2484e172213afb923427a9e /Modules/TestCXXAcceptsFlag.cmake
parente6f9ea3d13d3500de8723702a558933254bbdbfe (diff)
downloadcmake-e1e7b114370aed206a741d30e43bb83f16d36c4e.tar.gz
ENH: fixed some spelling errors
Diffstat (limited to 'Modules/TestCXXAcceptsFlag.cmake')
-rw-r--r--Modules/TestCXXAcceptsFlag.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/TestCXXAcceptsFlag.cmake b/Modules/TestCXXAcceptsFlag.cmake
index c7bb5b23c1..a0cabd7985 100644
--- a/Modules/TestCXXAcceptsFlag.cmake
+++ b/Modules/TestCXXAcceptsFlag.cmake
@@ -8,19 +8,19 @@
MACRO(CHECK_CXX_ACCEPTS_FLAG FLAGS VARIABLE)
IF(NOT DEFINED ${VARIABLE})
- MESSAGE(STATUS "Checking to see if CXX compiler acepts flag ${FLAGS}")
+ MESSAGE(STATUS "Checking to see if CXX compiler accepts flag ${FLAGS}")
TRY_COMPILE(${VARIABLE}
${CMAKE_BINARY_DIR}
${CMAKE_ROOT}/Modules/DummyCXXFile.cxx
CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${FLAGS}
OUTPUT_VARIABLE OUTPUT)
IF(${VARIABLE})
- MESSAGE(STATUS "Checking to see if CXX compiler acepts flag ${FLAGS} - yes")
+ MESSAGE(STATUS "Checking to see if CXX compiler accepts flag ${FLAGS} - yes")
FILE(APPEND ${CMAKE_BINARY_DIR}/CMakeOutput.log
"Determining if the CXX compiler accepts the flag ${FLAGS} passed with "
"the following output:\n${OUTPUT}\n\n")
ELSE(${VARIABLE})
- MESSAGE(STATUS "Checking to see if CXX compiler acepts flag ${FLAGS} - no")
+ MESSAGE(STATUS "Checking to see if CXX compiler accepts flag ${FLAGS} - no")
FILE(APPEND ${CMAKE_BINARY_DIR}/CMakeError.log
"Determining if the CXX compiler accepts the flag ${FLAGS} failed with "
"the following output:\n${OUTPUT}\n\n")