diff options
author | David Spickett <david.spickett@linaro.org> | 2022-10-28 09:13:13 +0000 |
---|---|---|
committer | David Spickett <david.spickett@linaro.org> | 2023-01-16 09:37:29 +0000 |
commit | c8e4eb1043f4be6d9d823ce8f3238dca3479ffd4 (patch) | |
tree | c96383634f8bb1f4abc62d95f00ed9e73f29c0d4 /lldb/source/Commands/CommandObjectPlatform.cpp | |
parent | 68a534e9bf69e7e5f081a515e05f1d3cb4c21761 (diff) | |
download | llvm-c8e4eb1043f4be6d9d823ce8f3238dca3479ffd4.zip llvm-c8e4eb1043f4be6d9d823ce8f3238dca3479ffd4.tar.gz llvm-c8e4eb1043f4be6d9d823ce8f3238dca3479ffd4.tar.bz2 |
[LLDB] Fix help text for "platform settings"
This claims to take a platform name argument but doesn't.
That was probably the intent in fbb7634934d40548b650574a2f2a85ab41527674
but it has only ever worked with the current platform.
Reviewed By: clayborg
Differential Revision: https://reviews.llvm.org/D136928
Diffstat (limited to 'lldb/source/Commands/CommandObjectPlatform.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectPlatform.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectPlatform.cpp b/lldb/source/Commands/CommandObjectPlatform.cpp index 69c44fe..1ab218f 100644 --- a/lldb/source/Commands/CommandObjectPlatform.cpp +++ b/lldb/source/Commands/CommandObjectPlatform.cpp @@ -379,8 +379,7 @@ class CommandObjectPlatformSettings : public CommandObjectParsed { public: CommandObjectPlatformSettings(CommandInterpreter &interpreter) : CommandObjectParsed(interpreter, "platform settings", - "Set settings for the current target's platform, " - "or for a platform by name.", + "Set settings for the current target's platform.", "platform settings", 0), m_option_working_dir(LLDB_OPT_SET_1, false, "working-dir", 'w', CommandCompletions::eRemoteDiskDirectoryCompletion, |