diff options
author | brad kittenbrink <brad@lindenlab.com> | 2009-12-18 13:21:41 -0800 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2009-12-18 13:21:41 -0800 |
commit | f6d8165445f1051adcd9e52ef7ab20836373aa5a (patch) | |
tree | 0dfeed2118f86ee464692c04a9fdec0315f1fc1f /indra/newview | |
parent | 1e922c266657d74e5a746334777917f4efaf7871 (diff) |
Fix for extra llplugin/ on the path of the imageformats plugins.
reviewed by mani.
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index d69a771bbb..d2859db296 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -345,7 +345,7 @@ class WindowsManifest(ViewerManifest): self.path("ssleay32.dll") # For WebKit/Qt plugin runtimes (image format plugins) - if self.prefix(src="imageformats", dst="llplugin/imageformats"): + if self.prefix(src="imageformats", dst="imageformats"): self.path("qgifd4.dll") self.path("qicod4.dll") self.path("qjpegd4.dll") @@ -368,7 +368,7 @@ class WindowsManifest(ViewerManifest): self.path("ssleay32.dll") # For WebKit/Qt plugin runtimes (image format plugins) - if self.prefix(src="imageformats", dst="llplugin/imageformats"): + if self.prefix(src="imageformats", dst="imageformats"): self.path("qgif4.dll") self.path("qico4.dll") self.path("qjpeg4.dll") |