diff options
| author | Erik Kundiman <erik@megapahit.org> | 2026-04-23 17:11:18 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2026-04-23 17:11:18 +0800 |
| commit | c865f4d2ffcdf2691308023efeb1ba8bcb69e7b3 (patch) | |
| tree | 6632ec7220ba364402bda319600340a678e6b832 /indra | |
| parent | 2162fdfc9da609400c1074424029faed5051e72d (diff) | |
Adjust open path on FreeBSD again
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llfilesystem/lldir.cpp | 3 |
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; |
