summaryrefslogtreecommitdiffstats
path: root/Tests/ComplexRelativePaths/VarTests.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-12-12 15:10:34 (GMT)
committerBrad King <brad.king@kitware.com>2002-12-12 15:10:34 (GMT)
commit5203a92ef1f2202a21af3ae143f61aafb6487b5a (patch)
tree8cbf1b6a07395d0eb8170539349f67d9c9fc3b39 /Tests/ComplexRelativePaths/VarTests.cmake
parentee46e410ce35347d1e61ae389be3dbbb6b58f0bf (diff)
downloadCMake-5203a92ef1f2202a21af3ae143f61aafb6487b5a.zip
CMake-5203a92ef1f2202a21af3ae143f61aafb6487b5a.tar.gz
CMake-5203a92ef1f2202a21af3ae143f61aafb6487b5a.tar.bz2
BUG: Can't double-quote foreach arguments.
Diffstat (limited to 'Tests/ComplexRelativePaths/VarTests.cmake')
-rw-r--r--Tests/ComplexRelativePaths/VarTests.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/ComplexRelativePaths/VarTests.cmake b/Tests/ComplexRelativePaths/VarTests.cmake
index ff18844..d9804a2 100644
--- a/Tests/ComplexRelativePaths/VarTests.cmake
+++ b/Tests/ComplexRelativePaths/VarTests.cmake
@@ -157,7 +157,7 @@ FOREACH (INDEX 1 2)
ENDFOREACH(INDEX)
SET(FOREACH_CONCAT "")
-FOREACH (INDEX "a;b;c;d;e;f;g")
+FOREACH (INDEX a;b;c;d;e;f;g)
SET(FOREACH_CONCAT "${FOREACH_CONCAT}${INDEX}")
ENDFOREACH(INDEX)