summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2012-04-18 22:32:35 -0700
committerOz Linden <oz@lindenlab.com>2012-04-18 22:32:35 -0700
commita167b551843d64e9765075100fb278c2a5e8809c (patch)
tree4aebbb2d48afd4893a4f50b57fb041c23554f1cb /indra/newview
parentdf38250c3c6bae08b36fac7b12a8238a805e46a3 (diff)
rearrange dictionary copying
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/viewer_manifest.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index c88dbd97b1..5f687f3ac7 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -51,6 +51,11 @@ class ViewerManifest(LLManifest):
self.exclude("*.svn*")
self.path(src="../../scripts/messages/message_template.msg", dst="app_settings/message_template.msg")
self.path(src="../../etc/message.xml", dst="app_settings/message.xml")
+ # add the pre-installed spell checking dictionaries
+ dictdir = os.path.join(os.pardir, 'packages', 'dictionaries')
+ print "Trying dictionary relative to %s with %s" % (self.get_src_prefix(), dictdir);
+ self.path(src=dictdir,
+ dst=os.path.join("app_settings","dictionaries")
if self.is_packaging_viewer():
if self.prefix(src="app_settings"):
@@ -91,11 +96,6 @@ class ViewerManifest(LLManifest):
# ... and the entire windlight directory
self.path("windlight")
- # ... and the pre-installed spell checking dictionaries
- dictdir = os.path.join(os.pardir, os.pardir, self.args['configuration'], 'packages/dictionaries')
- print "Trying dictionary relative to %s with %s" % (self.get_build_prefix(), dictdir);
- self.path(src=dictdir,
- dst="dictionaries")
self.end_prefix("app_settings")
if self.prefix(src="character"):