summaryrefslogtreecommitdiff
path: root/indra/llfilesystem
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2023-12-21 14:24:32 +0800
committerErik Kundiman <erik@megapahit.org>2023-12-21 14:24:32 +0800
commit7fec9acd4da743145ffd0f248d8804d72ab9ec8b (patch)
treec94d9f28e2b3ac71c0f482e655d3f1bed782267e /indra/llfilesystem
parentb0e28d27bd990393e22ca3f474c340e77a08357b (diff)
Fix Linux wrong SLPlugin full path
from /usr/bin to /usr/libexec/megapahit. Don't re-set mExecutableDir under any circumstances.
Diffstat (limited to 'indra/llfilesystem')
-rw-r--r--indra/llfilesystem/lldir_linux.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llfilesystem/lldir_linux.cpp b/indra/llfilesystem/lldir_linux.cpp
index c343728505..784ddd5b71 100644
--- a/indra/llfilesystem/lldir_linux.cpp
+++ b/indra/llfilesystem/lldir_linux.cpp
@@ -127,7 +127,7 @@ LLDir_Linux::LLDir_Linux()
if ((path_end = strrchr(tmp_str,'/')))
{
*path_end = '\0';
- mExecutableDir = tmp_str;
+ //mExecutableDir = tmp_str;
mWorkingDir = tmp_str;
mExecutableFilename = path_end+1;
}