Uncomment use of etc/ for spawnWebBrowser on Linux, now that we use etc/ for scripts.

Thanks to H-H-H for pointing this out.
This commit is contained in:
Inusaito Sayori
2015-04-19 18:08:49 -04:00
parent be41d8f734
commit 8b7b0649a8

View File

@@ -2561,8 +2561,8 @@ void LLWindowSDL::spawnWebBrowser(const std::string& escaped_url, bool async)
std::string cmd, arg;
cmd = gDirUtilp->getAppRODataDir();
cmd += gDirUtilp->getDirDelimiter();
//cmd += "etc";
//cmd += gDirUtilp->getDirDelimiter();
cmd += "etc";
cmd += gDirUtilp->getDirDelimiter();
cmd += "launch_url.sh";
arg = escaped_url;
exec_cmd(cmd, arg);