Skip to content
Snippets Groups Projects
Commit e82743d9 authored by Tofu Linden's avatar Tofu Linden
Browse files

Merge.

parents 9e0920df dcbe1004
No related branches found
No related tags found
No related merge requests found
...@@ -828,8 +828,8 @@ class LinuxManifest(ViewerManifest): ...@@ -828,8 +828,8 @@ class LinuxManifest(ViewerManifest):
'dst': self.get_dst_prefix(), 'dst': self.get_dst_prefix(),
'inst': self.build_path_of(installer_name)}) 'inst': self.build_path_of(installer_name)})
try: try:
# only create tarball if it's not a debug build. # only create tarball if it's a release build.
if self.args['buildtype'].lower() != 'debug': if self.args['buildtype'].lower() == 'release':
# --numeric-owner hides the username of the builder for # --numeric-owner hides the username of the builder for
# security etc. # security etc.
self.run_command('tar -C %(dir)s --numeric-owner -cjf ' self.run_command('tar -C %(dir)s --numeric-owner -cjf '
...@@ -861,7 +861,7 @@ class Linux_i686Manifest(LinuxManifest): ...@@ -861,7 +861,7 @@ class Linux_i686Manifest(LinuxManifest):
pass pass
if(self.args['buildtype'].lower() != 'debug'): if(self.args['buildtype'].lower() == 'release'):
print "* packaging stripped viewer binary." print "* packaging stripped viewer binary."
self.path("secondlife-stripped","bin/do-not-directly-run-secondlife-bin") self.path("secondlife-stripped","bin/do-not-directly-run-secondlife-bin")
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment