summaryrefslogtreecommitdiff
path: root/Modules/CheckFunctionExists.cmake
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-29 13:34:12 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-29 13:34:12 -0500
commitccafaa6bce51754ae4ae6dc4319f7ddf23df4055 (patch)
tree4ae93947001f7634d373eca66f55b1f26f7b8e57 /Modules/CheckFunctionExists.cmake
parent91bd2078123a417b74537652cffabab108ed15f3 (diff)
downloadcmake-ccafaa6bce51754ae4ae6dc4319f7ddf23df4055.tar.gz
Add append to write_file
Diffstat (limited to 'Modules/CheckFunctionExists.cmake')
-rw-r--r--Modules/CheckFunctionExists.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CheckFunctionExists.cmake b/Modules/CheckFunctionExists.cmake
index 6b9d4b7ee1..4fddf4a76f 100644
--- a/Modules/CheckFunctionExists.cmake
+++ b/Modules/CheckFunctionExists.cmake
@@ -19,6 +19,6 @@ MACRO(CHECK_FUNCTION_EXISTS FUNCTION VARIABLE)
SET(${VARIABLE} "" CACHE INTERNAL "Have function ${LIBRARY}")
WRITE_FILE(${PROJECT_BINARY_DIR}/CMakeError.log
"Determining if the function ${FUNCTION} exists failed with the following output:\n"
- "${OUTPUT}\n")
+ "${OUTPUT}\n" APPEND)
ENDIF(${VARIABLE})
ENDMACRO(CHECK_FUNCTION_EXISTS)