llvm-project/lldb/source/Host
Greg Clayton 5b94e11873 When calling FileSpec::AppendPathComponent() we don't need to include "." in the path if m_filename is set to exactly '.'. Previously this would cause a FileSpec object that looked like:
m_directory = "/tmp"
m_filename = "."
                                         
To look like:

m_directory = "/tmp/."
m_filename = "foo.txt"

if "foo.txt" was appended to it. With this fix it will be:

m_directory = "/tmp"
m_filename = "foo.txt"

llvm-svn: 250770
2015-10-20 00:17:39 +00:00
..
android Fix temporary directory computation on linux (pr25147) 2015-10-16 09:32:05 +00:00
common When calling FileSpec::AppendPathComponent() we don't need to include "." in the path if m_filename is set to exactly '.'. Previously this would cause a FileSpec object that looked like: 2015-10-20 00:17:39 +00:00
freebsd [Makefiles] Align library names with CMake build 2015-07-14 20:25:19 +00:00
linux ArchSpec: fix unintentional promotion of unspecified unknowns to specified unknowns 2015-10-13 23:41:19 +00:00
macosx Re-commit the (fixed) changes from r248985 which were reverted by Pavel 2015-10-08 21:48:35 +00:00
netbsd Preliminary NetBSD support 2015-10-13 05:04:13 +00:00
posix Split Socket class into Tcp/Udp/DomainSocket subclasses. 2015-10-15 23:54:09 +00:00
windows Make uses of /dev/null portable across OSes. 2015-10-14 21:37:36 +00:00
CMakeLists.txt Split Socket class into Tcp/Udp/DomainSocket subclasses. 2015-10-15 23:54:09 +00:00
Makefile [Makefiles] Re-add OSX specific code that got lost in lldbHost consolidation 2015-07-17 21:47:35 +00:00