summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-08-08 17:55:32 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-08-08 17:55:32 (GMT)
commit81aaad0c7357b50770284b7d87d04cedf8bc4eae (patch)
tree6fea2c56f697d2e5b3092929fc0fb73e042ef67b /Source/cmMakefile.cxx
parentaaadc280c94dc8b08395616dfa3fec573076676f (diff)
parentb93982fb640b7a7f4ebf53d19a44f615dd547636 (diff)
downloadCMake-81aaad0c7357b50770284b7d87d04cedf8bc4eae.zip
CMake-81aaad0c7357b50770284b7d87d04cedf8bc4eae.tar.gz
CMake-81aaad0c7357b50770284b7d87d04cedf8bc4eae.tar.bz2
Merge topic 'cmake-syntax'
b93982f Merge branch 'dev/fix-variable-watch-crash' into cmake-syntax c50f7ed cmListFileLexer: Modify flex output to avoid Borland warning bf73264 Warn about unquoted arguments that look like long brackets 58e5241 Warn about arguments not separated by whitespace e75b69f cmListFileCache: Convert CMake language parser to class e945949 Add RunCMake.Syntax test cases for command invocation styles 0546484 cmListFileArgument: Generalize 'Quoted' bool to 'Delimeter' enum 28685ad cmListFileLexer: Split normal and legacy unquoted arguments 1eafa3e cmListFileLexer: Fix line number after backslash in string f3155cd Add RunCMake.Syntax test to cover argument parsing
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 08c9763..57b86fd 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -2840,7 +2840,7 @@ bool cmMakefile::ExpandArguments(
// If the argument is quoted, it should be one argument.
// Otherwise, it may be a list of arguments.
- if(i->Quoted)
+ if(i->Delim == cmListFileArgument::Quoted)
{
outArgs.push_back(value);
}