summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-10-24 21:55:18 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-10-24 21:55:18 +0000
commit7c18d8513b18fabc2495f8f02886eb03a9088fc2 (patch)
tree6b3fb296ecb18bae98d9ecfea118e749d606be2f /gtk2_ardour
parent2885898bd2dc2b6402049cb1ca2cca21ed9b5a05 (diff)
linux packaging changes that use a specially installed GTK stack
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@7920 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/main.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc
index c32d0d7ffb..3508c17d8f 100644
--- a/gtk2_ardour/main.cc
+++ b/gtk2_ardour/main.cc
@@ -366,13 +366,12 @@ fixup_bundle_environment (int argc, char* argv[])
setenv ("GTK_PATH", path.c_str(), 1);
if (!ARDOUR::translations_are_disabled ()) {
-
- path = dir_path;
- path += "/shared/locale";
-
- localedir = strdup (path.c_str());
- setenv ("GTK_LOCALEDIR", localedir, 1);
- }
+ path = dir_path;
+ path += "/share/locale";
+
+ localedir = strdup (path.c_str());
+ setenv ("GTK_LOCALEDIR", localedir, 1);
+ }
/* write a pango.rc file and tell pango to use it. we'd love
to put this into the Ardour.app bundle and leave it there,