diff options
| author | Howard Stearns <howard.stearns@gmail.com> | 2022-02-22 15:24:23 -0800 | 
|---|---|---|
| committer | Howard Stearns <howard.stearns@gmail.com> | 2022-02-22 15:24:23 -0800 | 
| commit | 1abc02ed6b5578f758e37abb5858a24408be4c68 (patch) | |
| tree | f380d34e52a3a023f95feb8ababeef83295c945a | |
| parent | 4e88caf9c60f9ebda9255052429248d53f61a778 (diff) | |
SL-9748 - Place cube.dae in ppRODataDir on all platforms.
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 7d059f08f4..3488e7550b 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -573,6 +573,7 @@ class WindowsManifest(ViewerManifest):          self.path(src="licenses-win32.txt", dst="licenses.txt")          self.path("featuretable.txt") +        self.path("cube.dae")          with self.prefix(src=pkgdir):              self.path("ca-bundle.crt") @@ -959,8 +960,8 @@ class DarwinManifest(ViewerManifest):                  self.path("licenses-mac.txt", dst="licenses.txt")                  self.path("featuretable_mac.txt") -                self.path("SecondLife.nib")                  self.path("cube.dae") +                self.path("SecondLife.nib")                  with self.prefix(src=pkgdir,dst=""):                      self.path("ca-bundle.crt") @@ -1403,6 +1404,7 @@ class LinuxManifest(ViewerManifest):              print "Skipping llcommon.so (assuming llcommon was linked statically)"          self.path("featuretable_linux.txt") +        self.path("cube.dae")          with self.prefix(src=pkgdir):              self.path("ca-bundle.crt")  | 
