Skip to content

Commit

Permalink
Fix buildbot breakage after https://reviews.llvm.org/D130309.
Browse files Browse the repository at this point in the history
  • Loading branch information
clayborg committed Jul 22, 2022
1 parent 810adea commit 0bbce7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/source/Host/linux/HostInfoLinux.cpp
Expand Up @@ -171,7 +171,7 @@ bool HostInfoLinux::ComputeSupportExeDirectory(FileSpec &file_spec) {
if (HostInfoPosix::ComputeSupportExeDirectory(file_spec) &&
file_spec.IsAbsolute() && FileSystem::Instance().Exists(file_spec))
return true;
file_spec.GetDirectory() = GetProgramFileSpec().GetDirectory();
file_spec.SetDirectory(GetProgramFileSpec().GetDirectory());
return !file_spec.GetDirectory().IsEmpty();
}

Expand Down

0 comments on commit 0bbce7a

Please sign in to comment.