diff options
author | Brad King <brad.king@kitware.com> | 2006-10-04 18:37:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-04 18:37:42 (GMT) |
commit | 523075ded543cbb7044bc4b56203d329aff0cb42 (patch) | |
tree | b437035f021967f257018e4199291c5f0983aabf /Tests | |
parent | 430f6f35ebfd237e6f33afee21308bfc28a7a553 (diff) | |
download | CMake-523075ded543cbb7044bc4b56203d329aff0cb42.zip CMake-523075ded543cbb7044bc4b56203d329aff0cb42.tar.gz CMake-523075ded543cbb7044bc4b56203d329aff0cb42.tar.bz2 |
BUG: Do not replace @VAR@ syntax in list files. This addresses bug #2722.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CustomCommand/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CustomCommand/CMakeLists.txt b/Tests/CustomCommand/CMakeLists.txt index 5d13702..0d4b78c 100644 --- a/Tests/CustomCommand/CMakeLists.txt +++ b/Tests/CustomCommand/CMakeLists.txt @@ -185,7 +185,7 @@ SET(CHECK_ARGS dollar$sign &ersands& amper&sand - \@two-ats\@ + @two-ats@ one@at "c:/posix/path/with space" "c:\\windows\\path\\with space" @@ -204,7 +204,7 @@ SET(CHECK_ARGS "dollar$sign with space" "&ersands& with space" "amper&sand with space" - "\@two-ats\@ with space" + "@two-ats@ with space" "one@at with space" ) FOREACH(arg ${CHECK_ARGS}) |