fix locale path in OS X bundles

This commit is contained in:
Paul Davis 2013-10-22 11:08:31 -04:00
parent cfe42bc4ea
commit 17cd6b4044

View File

@ -153,7 +153,7 @@ fixup_bundle_environment (int, char* [])
vector<string> lpath;
lpath.push_back (bundle_dir);
lpath.push_back ("share");
lpath.push_back ("Resources");
lpath.push_back ("locale");
localedir = strdup (Glib::build_filename (lpath).c_str());
}