From d4e63aead64cf4910fcee9590af72ba8bc68ceb5 Mon Sep 17 00:00:00 2001 From: Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> Date: Tue, 18 Aug 2026 01:17:29 +0300 Subject: #5994 Fix path based launch for LLProcess --- indra/llcommon/llprocess.cpp | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'indra/llcommon/llprocess.cpp') diff --git a/indra/llcommon/llprocess.cpp b/indra/llcommon/llprocess.cpp index a71589a2bf..e43f386af2 100644 --- a/indra/llcommon/llprocess.cpp +++ b/indra/llcommon/llprocess.cpp @@ -701,8 +701,25 @@ void LLProcess::launch(const LLSDOrParams& params) else stdio.err = nullptr; // inherit - // Build executable path + // Build executable path. + // Resolve bare executable names (i.e. "outleap-agent") through the + // environment's PATH boost::filesystem::path executable_path(params.executable()); + if (!executable_path.has_parent_path()) + { + boost::filesystem::path resolved = + bp::environment::find_executable(executable_path); + if (!resolved.empty()) + { + executable_path = resolved; + } + else + { + LL_WARNS("LLProcess") << "Could not locate '" << params.executable() + << "' on PATH -- launch will likely fail" << LL_ENDL; + // Let bp::process try to produce an error. + } + } // In Boost.Process v2, error_code cannot be passed as an initializer. // Use the throwing overload and catch the exception instead. -- cgit v1.3