diff options
author | Brad King <brad.king@kitware.com> | 2023-08-08 14:06:21 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-08-08 14:06:39 (GMT) |
commit | c05d06c6ed92f28bc3cb4b2a90135607c69bf3c7 (patch) | |
tree | 38938407ba620520524b0fafad76af477933ee95 /Source/cmFileCommand.cxx | |
parent | 782cdb22bda3ef8596e151fa2ad2b17c261cd530 (diff) | |
parent | 88f90a72f11bfdd16da63681ba3a5c482cf07304 (diff) | |
download | CMake-c05d06c6ed92f28bc3cb4b2a90135607c69bf3c7.zip CMake-c05d06c6ed92f28bc3cb4b2a90135607c69bf3c7.tar.gz CMake-c05d06c6ed92f28bc3cb4b2a90135607c69bf3c7.tar.bz2 |
Merge topic 'file-GENERATE-arg-parsing'
88f90a72f1 file(GENERATE): Restore INPUT|CONTENT parse checking
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !8694
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index f4fbf75..70f82ad 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -2606,8 +2606,9 @@ bool HandleGenerateCommand(std::vector<std::string> const& args, return false; } const bool inputIsContent = arguments.ParsedKeywords[1] == "CONTENT"_s; - if (!inputIsContent && arguments.ParsedKeywords[1] == "INPUT") { + if (!inputIsContent && arguments.ParsedKeywords[1] != "INPUT") { status.SetError("Unknown argument to GENERATE subcommand."); + return false; } std::string const& input = inputIsContent ? *arguments.Content : *arguments.Input; |