summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2026-04-23 17:11:18 +0800
committerErik Kundiman <erik@megapahit.org>2026-04-23 17:11:18 +0800
commitc865f4d2ffcdf2691308023efeb1ba8bcb69e7b3 (patch)
tree6632ec7220ba364402bda319600340a678e6b832 /indra
parent2162fdfc9da609400c1074424029faed5051e72d (diff)
Adjust open path on FreeBSD again
Diffstat (limited to 'indra')
-rw-r--r--indra/llfilesystem/lldir.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llfilesystem/lldir.cpp b/indra/llfilesystem/lldir.cpp
index bc3f09c1e5..a57ac021d9 100644
--- a/indra/llfilesystem/lldir.cpp
+++ b/indra/llfilesystem/lldir.cpp
@@ -1143,6 +1143,9 @@ void LLDir::openDir(const std::string& filepath)
// Note: Most file managers don't support file selection, so we open the directory
params.executable = "/usr/bin/xdg-open";
params.args.add(dir_path);
+#elif __FreeBSD__
+ params.executable = "/usr/local/bin/xdg-open";
+ params.args.add(dir_path);
#else
LL_WARNS() << "Platform not supported for file browser opening" << LL_ENDL;
return;