summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2012-04-23 16:39:09 -0400
committerOz Linden <oz@lindenlab.com>2012-04-23 16:39:09 -0400
commit22d84a68335528d00ce61ec84583eb55f32a3545 (patch)
treeb9331c64a29b12982ade99f8ff4b2daade448402
parentb93c9d8ba0792b6f63776301dc60a2ac8a4453ca (diff)
go back to the more elaborate way to find dictionaries (the way that works)
-rw-r--r--indra/newview/viewer_manifest.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 8fe39bafdd..58522c091d 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -93,11 +93,10 @@ 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)
- self.path(src="../packages/dictionaries", dst="dictionaries")
+ pkgdir = os.path.join(self.args['build'], os.pardir, 'packages')
+ if self.prefix(src=pkgdir,dst=""):
+ self.path("dictionaries")
+ self.end_prefix(pkgdir)
self.end_prefix("app_settings")