diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2022-08-23 12:55:38 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2022-08-23 12:55:38 -0400 |
commit | 7bef77cf4b3ae2552c54289a38ae2cc4aaea8e3c (patch) | |
tree | a1a33f61e7511c7c6d0cc4204f3b9d2cbc22e41a /indra | |
parent | 15d37713b9113a6f70dde48c764df02c76e18cbc (diff) |
DRTVWR-558: macOS Monterey objdump apparently needs --option
instead of -option as before.
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 de5ac5ed3d..2e0b3506f9 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -908,7 +908,7 @@ class DarwinManifest(ViewerManifest): # Let exception, if any, propagate -- if this doesn't # work, we need the build to noisily fail! oldpath = subprocess.check_output( - ['objdump', '-macho', '-dylib-id', '-non-verbose', + ['objdump', '--macho', '--dylib-id', '--non-verbose', os.path.join(relpkgdir, "BugsplatMac.framework", "BugsplatMac")] ).splitlines()[-1] # take the last line of output self.run_command( |