diff options
author | Karlson2k <k2k@narod.ru> | 2014-10-22 22:48:45 +0400 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2014-10-28 23:21:59 +0100 |
commit | ea1901e36495c62161315f54a8af398ea965ab9d (patch) | |
tree | 7da22f7e542b48890bdd51e93a007184c2dc09cb /tools/EventClients | |
parent | 34923de71b9e1597d5a610d9237c440909eaeb0c (diff) |
Change APP_HOME -> KODI_HOME and other APP_* -> KODI_*
Diffstat (limited to 'tools/EventClients')
-rw-r--r-- | tools/EventClients/Clients/OSXRemote/XBMCHelper.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/EventClients/Clients/OSXRemote/XBMCHelper.m b/tools/EventClients/Clients/OSXRemote/XBMCHelper.m index 20d0f6fe8f..b507611746 100644 --- a/tools/EventClients/Clients/OSXRemote/XBMCHelper.m +++ b/tools/EventClients/Clients/OSXRemote/XBMCHelper.m @@ -268,7 +268,7 @@ NSFileManager *fileManager = [NSFileManager defaultManager]; if([fileManager fileExistsAtPath:mp_app_path]){ if(mp_home_path && [mp_home_path length]) - setenv("APP_HOME", [mp_home_path UTF8String], 1); + setenv("KODI_HOME", [mp_home_path UTF8String], 1); //launch or activate xbmc if(![[NSWorkspace sharedWorkspace] launchApplication:mp_app_path]) ELOG(@"Error launching %@", mp_app_path); |