summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorChristian Goetze <cg@lindenlab.com>2008-03-27 21:49:06 +0000
committerChristian Goetze <cg@lindenlab.com>2008-03-27 21:49:06 +0000
commit287f4d44f3dd8bca98d48e57a152dae40822eeaa (patch)
tree773ba537e714b7d7ff816e4b02c1615e4c7e24cb /indra/newview
parentbbbaca2af1b16747b04bd2013ad1407c4be34ff8 (diff)
indentation error
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/viewer_manifest.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 1d89b6cf18..8f6865d13b 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -479,14 +479,14 @@ class LinuxManifest(ViewerManifest):
if re.search("lib/lib.+\.so.*", d):
self.run_command('strip -S %s' % d)
- # Fixing access permissions
- for s,d in self.dir_list:
- self.run_command("chmod 755 '%s'" % d)
- for s,d in self.file_list:
- if os.access(d, os.X_OK):
- self.run_command("chmod 755 '%s'" % d)
- else:
- self.run_command("chmod 644 '%s'" % d)
+ # Fixing access permissions
+ for s,d in self.dir_list:
+ self.run_command("chmod 755 '%s'" % d)
+ for s,d in self.file_list:
+ if os.access(d, os.X_OK):
+ self.run_command("chmod 755 '%s'" % d)
+ else:
+ self.run_command("chmod 644 '%s'" % d)
def package_finish(self):