Source packages: Fix that tar.xz was not xz but gz

Change-Id: I5379cdfe963f53cca04317ea51f544c40743db7b
Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
This commit is contained in:
Eike Ziller
2016-10-27 13:38:04 +02:00
parent c1e600a41d
commit 4f06d084fc

View File

@@ -78,7 +78,7 @@ def package_repos(repos, combined_prefix, target_file_base):
print('Creating .tar.gz...') print('Creating .tar.gz...')
createTarGz(archive_path(crlf=False), target_file_base + '.tar.gz') createTarGz(archive_path(crlf=False), target_file_base + '.tar.gz')
print('Creating .tar.xz...') print('Creating .tar.xz...')
createTarGz(archive_path(crlf=False), target_file_base + '.tar.xz') createTarXz(archive_path(crlf=False), target_file_base + '.tar.xz')
print('Creating .zip with CRLF...') print('Creating .zip with CRLF...')
createZip(archive_path(crlf=True), target_file_base + '.zip') createZip(archive_path(crlf=True), target_file_base + '.zip')
print('Removing temporary directory...') print('Removing temporary directory...')