diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-29 18:34:12 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-29 18:34:12 (GMT) |
commit | ccafaa6bce51754ae4ae6dc4319f7ddf23df4055 (patch) | |
tree | 4ae93947001f7634d373eca66f55b1f26f7b8e57 /Modules/TestBigEndian.cmake | |
parent | 91bd2078123a417b74537652cffabab108ed15f3 (diff) | |
download | CMake-ccafaa6bce51754ae4ae6dc4319f7ddf23df4055.zip CMake-ccafaa6bce51754ae4ae6dc4319f7ddf23df4055.tar.gz CMake-ccafaa6bce51754ae4ae6dc4319f7ddf23df4055.tar.bz2 |
Add append to write_file
Diffstat (limited to 'Modules/TestBigEndian.cmake')
-rw-r--r-- | Modules/TestBigEndian.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/TestBigEndian.cmake b/Modules/TestBigEndian.cmake index c729a82..2be59e3 100644 --- a/Modules/TestBigEndian.cmake +++ b/Modules/TestBigEndian.cmake @@ -11,6 +11,7 @@ MACRO(TEST_BIG_ENDIAN VARIABLE) OUTPUT_VARIABLE OUTPUT) IF(NOT HAVE_${VARIABLE}) WRITE_FILE(${PROJECT_BINARY_DIR}/CMakeError.log - "Determining the endianes of the system failed with the following output:\n${OUTPUT}\n") + "Determining the endianes of the system failed with the following output:\n${OUTPUT}\n" + APPEND) ENDIF(NOT HAVE_${VARIABLE}) ENDMACRO(TEST_BIG_ENDIAN) |