diff options
author | CG Linden <cg@lindenlab.com> | 2009-11-17 18:20:33 -0800 |
---|---|---|
committer | CG Linden <cg@lindenlab.com> | 2009-11-17 18:20:33 -0800 |
commit | 78bb530dab950639db239ec752ab842a91d58aed (patch) | |
tree | 1c124fbfb98ce6344b68254aab39fc44ae5a333f /indra | |
parent | be666bc14f7252b5cfa0b9c2e34f170f5e24c4d3 (diff) |
Fix llkdu.dll inclusion problem
llkdu.dll was referenced via "configuration", but sharedlibs prefix already included "configuration"
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 7e5c30a978..f2597c8bbb 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -241,7 +241,7 @@ class WindowsManifest(ViewerManifest): # Get kdu dll, continue if missing. try: - self.path('%s/llkdu.dll' % self.args['configuration'], dst='llkdu.dll') + self.path('llkdu.dll', dst='llkdu.dll') except RuntimeError: print "Skipping llkdu.dll" |