diff options
author | Aura Linden <aura@lindenlab.com> | 2012-12-11 06:56:14 -0800 |
---|---|---|
committer | Aura Linden <aura@lindenlab.com> | 2012-12-11 06:56:14 -0800 |
commit | 53ea30af06f94b5462fada7c4bfea3122b50ff95 (patch) | |
tree | 33c46dcf0195562451b9026b16cab9c9ad97898e /indra/llvfs | |
parent | 2b3bcdbcbb8359220e0026b84b8521197ad0cf50 (diff) |
Interim debug checkin to test from teamcity
Diffstat (limited to 'indra/llvfs')
-rw-r--r-- | indra/llvfs/llvfs_objc.mm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/llvfs/llvfs_objc.mm b/indra/llvfs/llvfs_objc.mm index 4d7cd3a93e..61cfad99d6 100644 --- a/indra/llvfs/llvfs_objc.mm +++ b/indra/llvfs/llvfs_objc.mm @@ -51,10 +51,10 @@ std::string* findSystemDirectory(NSSearchPathDirectory searchPathDirectory, YES); if ([paths count]) { - NSString *bundleName = - [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleIdentifier"]; - path = [[paths objectAtIndex:0] stringByAppendingPathComponent:bundleName]; - + //NSString *bundleName = @"SecondLife"; + //[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleIdentifier"]; + //path = [[paths objectAtIndex:0] stringByAppendingPathComponent:bundleName]; + path = [paths objectAtIndex:0]; //SPATTERS HACK: Always attempt to create directory, ignore errors. NSError *error = nil; @@ -88,6 +88,7 @@ std::string* getSystemApplicationSupportFolder() { return findSystemDirectory (NSApplicationSupportDirectory, NSUserDomainMask); + } #endif // LL_DARWIN |