From 22d84a68335528d00ce61ec84583eb55f32a3545 Mon Sep 17 00:00:00 2001
From: Oz Linden <oz@lindenlab.com>
Date: Mon, 23 Apr 2012 16:39:09 -0400
Subject: [PATCH] go back to the more elaborate way to find dictionaries (the
 way that works)

---
 indra/newview/viewer_manifest.py | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 8fe39bafddf..58522c091db 100644
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -93,11 +93,10 @@ def construct(self):
                 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")
 
-- 
GitLab