From 1055edb9ea67d645325fc5bbc01a9ec1e0238ed0 Mon Sep 17 00:00:00 2001 From: Oz Linden Date: Wed, 18 Apr 2012 19:25:25 -0700 Subject: add logging to diagnose path problem --- indra/newview/viewer_manifest.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'indra') 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"): -- cgit v1.2.3