diff options
author | Brad King <brad.king@kitware.com> | 2021-04-05 17:44:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-04-05 17:44:49 (GMT) |
commit | d206c8f1ec265d04321e463f919e35c5f9c2cfb8 (patch) | |
tree | b69ef8199f1f1ade3914be8bf8e2da8d9fe0d37e /Source/cmMakefile.cxx | |
parent | 004dbbaddd1a040b44cb637e298997e332f40f11 (diff) | |
parent | 19ff734e76a35d59eb0f973197cadb1c271c766c (diff) | |
download | CMake-d206c8f1ec265d04321e463f919e35c5f9c2cfb8.zip CMake-d206c8f1ec265d04321e463f919e35c5f9c2cfb8.tar.gz CMake-d206c8f1ec265d04321e463f919e35c5f9c2cfb8.tar.bz2 |
Merge tag 'v3.19.3' into backport-3.19-rel-file-table
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 0e4f888..3946841 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -308,7 +308,7 @@ void cmMakefile::PrintCommandTrace( args.reserve(lff.Arguments().size()); for (cmListFileArgument const& arg : lff.Arguments()) { - if (expand) { + if (expand && arg.Delim != cmListFileArgument::Bracket) { temp = arg.Value; this->ExpandVariablesInString(temp); args.push_back(temp); |