summaryrefslogtreecommitdiff
path: root/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2012-04-18 19:25:25 -0700
committerOz Linden <oz@lindenlab.com>2012-04-18 19:25:25 -0700
commit1055edb9ea67d645325fc5bbc01a9ec1e0238ed0 (patch)
tree81a13648fec44bced7be3a3a9d184a53aca58829 /indra/newview/viewer_manifest.py
parent83717183c57121167b671f7bdcc4ab3122b95846 (diff)
add logging to diagnose path problem
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rw-r--r--indra/newview/viewer_manifest.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index f6245fedfb..d2cd644175 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -92,7 +92,10 @@ class ViewerManifest(LLManifest):
# ... and the entire windlight directory
self.path("windlight")
# ... and the pre-installed spell checking dictionaries
- self.path("../../../packages/dictionaries", dst="dictionaries")
+ dictdir = os.path.join(os.pardir, os.pardir, self.args['configuration'], 'packages/dictionaries')
+ print "Trying dictionary relative to %s with %s" % (get_build_prefix(), dictdir);
+ self.path(src=dictdir,
+ dst="dictionaries")
self.end_prefix("app_settings")
if self.prefix(src="character"):