diff options
author | Brad King <brad.king@kitware.com> | 2017-08-30 11:05:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-08-30 12:29:43 (GMT) |
commit | ebc91a4452e1b2c2a1f42643d4a01deceea07a2b (patch) | |
tree | 254b45dd30eeccaee9060690c9f8dcd53b00104c /Tests/RunCMake/Syntax/BracketCRLF.cmake | |
parent | c69b4c8dfef08197d620932212d49366d22c0f45 (diff) | |
download | CMake-ebc91a4452e1b2c2a1f42643d4a01deceea07a2b.zip CMake-ebc91a4452e1b2c2a1f42643d4a01deceea07a2b.tar.gz CMake-ebc91a4452e1b2c2a1f42643d4a01deceea07a2b.tar.bz2 |
Avoid CRLF newlines in Git repo blobs
In commit 8ed03baa76 (gitattributes: prefer `eol=crlf` to `-crlf`,
2017-08-23) we left a few CRLF blobs in the repository. Some Git
versions get confused by text files with CRLF blobs. Convert them
to LF blobs. Use the `eol=crlf` attribute to tell Git to use CRLF
on checkout.
Diffstat (limited to 'Tests/RunCMake/Syntax/BracketCRLF.cmake')
-rw-r--r-- | Tests/RunCMake/Syntax/BracketCRLF.cmake | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Tests/RunCMake/Syntax/BracketCRLF.cmake b/Tests/RunCMake/Syntax/BracketCRLF.cmake index bda0e17..2ea6df2 100644 --- a/Tests/RunCMake/Syntax/BracketCRLF.cmake +++ b/Tests/RunCMake/Syntax/BracketCRLF.cmake @@ -1,8 +1,8 @@ -if([[
-]] STREQUAL "" AND
-[[a
-b]] STREQUAL "a\nb")
- message("CRLF->LF worked")
-else()
- message(FATAL_ERROR "CRLF->LF failed")
-endif()
+if([[ +]] STREQUAL "" AND +[[a +b]] STREQUAL "a\nb") + message("CRLF->LF worked") +else() + message(FATAL_ERROR "CRLF->LF failed") +endif() |