diff options
author | palange <palange@lindenlab.com> | 2010-06-14 17:03:15 -0700 |
---|---|---|
committer | palange <palange@lindenlab.com> | 2010-06-14 17:03:15 -0700 |
commit | 8f592d0ecdaa2a43b313a6a9f192eb2f4d999a92 (patch) | |
tree | d84c09e55da0a3173cb1647fe94558372fdc9a5b /indra | |
parent | 566ad611d0d6e8ae1c7bf2947c943ae7bd8bb34f (diff) |
Fix mac dev build error, mac always package.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 8d2525dd26..c2d86b91c6 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -559,6 +559,10 @@ class WindowsManifest(ViewerManifest): class DarwinManifest(ViewerManifest): + def is_packaging_viewer(self): + # darwin requires full app bundle packaging even for debugging. + return true + def construct(self): # copy over the build result (this is a no-op if run within the xcode script) self.path(self.args['configuration'] + "/Second Life.app", dst="") |