diff options
author | Jason Molenda <jmolenda@apple.com> | 2015-11-06 00:55:17 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2015-11-06 00:55:17 +0000 |
commit | 38cc30279616acad9faa70504d2b8dab17aff0fa (patch) | |
tree | 08f06dfab9f17db7224562a7a5dabf32eaaf667e | |
parent | 256df863ed6b82ef4042e34255fcae9a6e2c8d8b (diff) | |
download | bcm5719-llvm-38cc30279616acad9faa70504d2b8dab17aff0fa.tar.gz bcm5719-llvm-38cc30279616acad9faa70504d2b8dab17aff0fa.zip |
Jim thinks we shouldn't bother to pollute the svn repo with these
internal details, so I'll pull it back to just our own branch
of the sources.
llvm-svn: 252254
-rw-r--r-- | lldb/source/Host/macosx/Symbols.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Host/macosx/Symbols.cpp b/lldb/source/Host/macosx/Symbols.cpp index c8ff1ae000e..f6a18febe6d 100644 --- a/lldb/source/Host/macosx/Symbols.cpp +++ b/lldb/source/Host/macosx/Symbols.cpp @@ -469,9 +469,9 @@ Symbols::DownloadObjectAndSymbolFile (ModuleSpec &module_spec, bool force_lookup StreamString command; if (!uuid_str.empty()) - command.Printf("%s --ignoreNegativeCache --copyExecutable --databases bursar.apple.com,uuidsymmap.apple.com %s", g_dsym_for_uuid_exe_path, uuid_str.c_str()); + command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, uuid_str.c_str()); else if (file_path[0] != '\0') - command.Printf("%s --ignoreNegativeCache --copyExecutable --databases bursar.apple.com,uuidsymmap.apple.com %s", g_dsym_for_uuid_exe_path, file_path); + command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, file_path); if (!command.GetString().empty()) { |