diff options
author | Oz Linden <oz@lindenlab.com> | 2013-05-21 17:34:40 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-05-21 17:34:40 -0400 |
commit | 10f20605475798ecdc33bf706b6f90a3b81bcb1c (patch) | |
tree | 0fc3fc4a48f382f6e6d083df6b22b1f4cbb7984a /indra/newview/viewer_manifest.py | |
parent | f9bdc6d5e13854edca343440a61f7589efe65263 (diff) | |
parent | 70b0b2a2e3d4661d5df2a487cf519a4509a89c6f (diff) |
merge changes for chop-947
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index bc473f6d62..2578c81224 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -154,10 +154,8 @@ class ViewerManifest(LLManifest): # Files in the newview/ directory self.path("gpu_table.txt") - - # The summary.json file gets left in the base checkout dir by - # build.sh. It's only created for a build.sh build. - if not self.path2basename(os.path.join(os.pardir, os.pardir), "summary.json"): + # The summary.json file gets left in the build directory by newview/CMakeLists.txt. + if not self.path2basename(os.pardir, "summary.json"): print "No summary.json file" def grid(self): |