From 38cc30279616acad9faa70504d2b8dab17aff0fa Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Fri, 6 Nov 2015 00:55:17 +0000 Subject: 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 --- lldb/source/Host/macosx/Symbols.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Host/macosx/Symbols.cpp') 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()) { -- cgit v1.2.3