diff options
author | brad kittenbrink <brad@lindenlab.com> | 2010-11-29 15:49:48 -0800 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2010-11-29 15:49:48 -0800 |
commit | 7c287011f9474be8c57374768950e40386e1b0ec (patch) | |
tree | 2a379a461c7708b66559ac36866a17f9cbc60cc4 | |
parent | 76ba60db0b01316022c9af7ef996f84d5141485d (diff) |
CHOP-223 fix for mac build breakage introduced in the last change.
-rw-r--r-- | 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 9a99c17f30..ea62760f31 100644 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -714,7 +714,7 @@ class DarwinManifest(ViewerManifest): def copy_finish(self): # Force executable permissions to be set for scripts # see CHOP-223 and http://mercurial.selenic.com/bts/issue1802 - for script in 'MacOS/update_install': + for script in 'MacOS/update_install',: self.run_command("chmod +x %r" % os.path.join(self.get_dst_prefix(), script)) def package_finish(self): |