diff options
| author | Kyle Ambroff <ambroff@lindenlab.com> | 2008-10-23 18:48:58 +0000 |
|---|---|---|
| committer | Kyle Ambroff <ambroff@lindenlab.com> | 2008-10-23 18:48:58 +0000 |
| commit | 9cc14df4889ed01c54f9b64d71ab49ac51bfb9d3 (patch) | |
| tree | 403efe3243b2780fec6af055d1c68374c0480d60 | |
| parent | 04decf22b9982aa8914024556ac11ce8c6f322a0 (diff) | |
A bug in viewer_manifest.py was causing Linux packages to be built
without libapr and libaprutil. Fixed.
| -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 c250350745..978d70c646 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -622,8 +622,8 @@ class Linux_i686Manifest(LinuxManifest): if self.prefix("../../libraries/i686-linux/lib_release_client", dst="lib"): self.path("libkdu_v42R.so") self.path("libfmod-3.75.so") - self.path("libapr-1.so.0*") - self.path("libaprutil-1.so.0*") + self.path("libapr-1.so.0") + self.path("libaprutil-1.so.0") self.path("libdb-4.2.so") self.path("libcrypto.so.0.9.7") self.path("libexpat.so.1") |
