diff options
author | Oz Linden <oz@lindenlab.com> | 2012-04-23 16:01:45 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-04-23 16:01:45 -0400 |
commit | b93c9d8ba0792b6f63776301dc60a2ac8a4453ca (patch) | |
tree | 5ac0393e0bdf2b3b9dfc5a335a139999b16d97f0 /indra | |
parent | 01cd6614484a38b974c2bbd692ccd3e0b1b2fc58 (diff) |
correct mac hunspell lib name, try simpler reference to dictionaries
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/viewer_manifest.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 56933bbd21..8fe39bafdd 100644 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -93,10 +93,11 @@ class ViewerManifest(LLManifest): self.path("windlight") # ... and the included spell checking dictionaries - pkgdir = os.path.join(self.args['build'], os.pardir, 'packages') - if self.prefix(src=pkgdir,dst=""): - self.path("dictionaries") - self.end_prefix(pkgdir) + #pkgdir = os.path.join(self.args['build'], os.pardir, 'packages') + #if self.prefix(src=pkgdir,dst=""): + # self.path("dictionaries") + # self.end_prefix(pkgdir) + self.path(src="../packages/dictionaries", dst="dictionaries") self.end_prefix("app_settings") @@ -669,7 +670,7 @@ class DarwinManifest(ViewerManifest): # copy additional libs in <bundle>/Contents/MacOS/ self.path("../packages/lib/release/libndofdev.dylib", dst="Resources/libndofdev.dylib") - self.path("../packages/lib/release/libhunspell-1.3.dylib", dst="Resources/libhunspell-1.3.dylib") + self.path("../packages/lib/release/libhunspell-1.3.0.dylib", dst="Resources/libhunspell-1.3.0.dylib") self.path("../viewer_components/updater/scripts/darwin/update_install", "MacOS/update_install") |