summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Stankowski <aambitny@gmail.com>2016-03-21 01:38:38 +0100
committerBrad King <brad.king@kitware.com>2016-03-21 10:54:02 -0400
commit8e2aa6caef17aa775e298f799dd4014a8ce46d1d (patch)
treea2e8b172cfb38eb6a23bee3c72da3fc3a24b4f4d
parenta9cb00cd50b518656053a5da4147a7106a8bfa78 (diff)
downloadcmake-8e2aa6caef17aa775e298f799dd4014a8ce46d1d.tar.gz
TestBigEndian: Log success to CMakeOutput.log, not CMakeError.log
-rw-r--r--Modules/TestBigEndian.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/TestBigEndian.cmake b/Modules/TestBigEndian.cmake
index fcb41abe1c..fdc3adbd01 100644
--- a/Modules/TestBigEndian.cmake
+++ b/Modules/TestBigEndian.cmake
@@ -104,7 +104,7 @@ macro(TEST_BIG_ENDIAN VARIABLE)
message(SEND_ERROR "TEST_BIG_ENDIAN found no result!")
endif()
- file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
+ file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
"Determining if the system is big endian passed with the following output:\n${OUTPUT}\nTestEndianess.c:\n${TEST_ENDIANESS_FILE_CONTENT}\n\n")
else()