summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-08-18 01:17:29 +0300
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-08-18 02:53:36 +0300
commitd4e63aead64cf4910fcee9590af72ba8bc68ceb5 (patch)
treea8346cc4b9ed070c56adb292a85e21d3ece35bd5
parent79ca9eecfcc483fa4f89fc99466f4b93a2343211 (diff)
#5994 Fix path based launch for LLProcess
-rw-r--r--indra/llcommon/llprocess.cpp19
1 files changed, 18 insertions, 1 deletions
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.