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 @@ def package_finish(self):
'dst': self.get_dst_prefix(),
'inst': self.build_path_of(installer_name)})
try:
# only create tarball if it's not a debug build.
if self.args['buildtype'].lower() != 'debug':
# only create tarball if it's a release build.
if self.args['buildtype'].lower() == 'release':
# --numeric-owner hides the username of the builder for
# security etc.
self.run_command('tar -C %(dir)s --numeric-owner -cjf '
......@@ -861,7 +861,7 @@ def construct(self):
pass
if(self.args['buildtype'].lower() != 'debug'):
if(self.args['buildtype'].lower() == 'release'):
print "* packaging stripped viewer binary."
self.path("secondlife-stripped","bin/do-not-directly-run-secondlife-bin")
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