summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-10-22 11:08:31 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-10-22 11:08:31 -0400
commit17cd6b4044bac5bb348d6a2f12caa2fa81d76327 (patch)
treec81abea2a5d030735a23ff30a41d78fa7d7f4bf9
parentcfe42bc4ea9a5a6234f43c173e14fdd89af39589 (diff)
fix locale path in OS X bundles
-rw-r--r--gtk2_ardour/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc
index 9407b05915..d01bca2a62 100644
--- a/gtk2_ardour/main.cc
+++ b/gtk2_ardour/main.cc
@@ -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());
}