From 6b1589cd81df7e4ed4a9254d9d744b9c35182d92 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Mon, 7 Jun 2010 21:45:40 +0000 Subject: [PATCH] Disable enviroment_overide() when MAC_INTEGRATION is defined: It doesn't play well with App Bundles. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19238 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/bin/gnucash-bin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/gnucash-bin.c b/src/bin/gnucash-bin.c index 116943b120..8f8647279b 100644 --- a/src/bin/gnucash-bin.c +++ b/src/bin/gnucash-bin.c @@ -740,8 +740,9 @@ main(int argc, char ** argv) * The user may have configured a different language via * the environment file. */ +#ifndef MAC_INTEGRATION environment_override(); - +#endif #ifdef HAVE_GETTEXT { gchar *localedir = gnc_path_get_localedir();