aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Seikel2011-03-27 00:53:32 +1000
committerDavid Seikel2011-03-27 00:53:32 +1000
commit36799ad201151c99872c2e8e2a3080404dafd5b1 (patch)
tree936f5cc393422298505dd87a4cf02aec70554a95
parentOops, fix the beta grid details. (diff)
downloadmeta-impy-36799ad201151c99872c2e8e2a3080404dafd5b1.zip
meta-impy-36799ad201151c99872c2e8e2a3080404dafd5b1.tar.gz
meta-impy-36799ad201151c99872c2e8e2a3080404dafd5b1.tar.bz2
meta-impy-36799ad201151c99872c2e8e2a3080404dafd5b1.tar.xz
Turn on the linux tarball generation again. Add a comment that we need a way to turn that on and off.
Diffstat (limited to '')
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py41
1 files changed, 21 insertions, 20 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py
index 81811a9..7eb2c7f 100755
--- a/linden/indra/newview/viewer_manifest.py
+++ b/linden/indra/newview/viewer_manifest.py
@@ -973,27 +973,28 @@ class LinuxManifest(ViewerManifest):
973 self.package_file = installer_name + '.tar.bz2' 973 self.package_file = installer_name + '.tar.bz2'
974 974
975 # Disabled for now. It's a waste of time to package every compile. 975 # Disabled for now. It's a waste of time to package every compile.
976 # Hmm, need a way to turn this on and off.
976 977
977 # if("package" in self.args['actions'] or 978 if("package" in self.args['actions'] or
978 # "unpacked" in self.args['actions']): 979 "unpacked" in self.args['actions']):
979 # 980
980 # # temporarily move directory tree so that it has the right 981 # temporarily move directory tree so that it has the right
981 # # name in the tarfile 982 # name in the tarfile
982 # self.run_command("mv %(dst)s %(inst)s" % { 983 self.run_command("mv %(dst)s %(inst)s" % {
983 # 'dst': self.get_dst_prefix(), 984 'dst': self.get_dst_prefix(),
984 # 'inst': self.build_path_of(installer_name)}) 985 'inst': self.build_path_of(installer_name)})
985 # try: 986 try:
986 # # --numeric-owner hides the username of the builder for 987 # --numeric-owner hides the username of the builder for
987 # # security etc. 988 # security etc.
988 # self.run_command('tar -C %(dir)s --numeric-owner -cjf ' 989 self.run_command('tar -C %(dir)s --numeric-owner -cjf '
989 # '%(inst_path)s.tar.bz2 %(inst_name)s' % { 990 '%(inst_path)s.tar.bz2 %(inst_name)s' % {
990 # 'dir': self.get_build_prefix(), 991 'dir': self.get_build_prefix(),
991 # 'inst_name': installer_name, 992 'inst_name': installer_name,
992 # 'inst_path':self.build_path_of(installer_name)}) 993 'inst_path':self.build_path_of(installer_name)})
993 # finally: 994 finally:
994 # self.run_command("mv %(inst)s %(dst)s" % { 995 self.run_command("mv %(inst)s %(dst)s" % {
995 # 'dst': self.get_dst_prefix(), 996 'dst': self.get_dst_prefix(),
996 # 'inst': self.build_path_of(installer_name)}) 997 'inst': self.build_path_of(installer_name)})
997 998
998class Linux_i686Manifest(LinuxManifest): 999class Linux_i686Manifest(LinuxManifest):
999 def construct(self): 1000 def construct(self):