diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-07-12 16:04:05 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-07-12 18:42:02 +0530 |
commit | ad91e1f5fca1ecd25130d83261bc5e71864a01e6 (patch) | |
tree | e3e53c8efcb87a28b7a7ce96ecc8cbdff7522969 | |
parent | 533ef280d3a91979ed92d5891316c806235a8e9a (diff) |
cerbero: Force uwp packagign to be a single tarball
There is no use splitting into separate runtime and development
tarballs because Visual Studio requires both to be present when
building the package, and the project will have to manually
include DLLs as assets anyway.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/551>
-rw-r--r-- | cerbero/commands/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cerbero/commands/package.py b/cerbero/commands/package.py index e44e6baa..97acdab6 100644 --- a/cerbero/commands/package.py +++ b/cerbero/commands/package.py @@ -101,7 +101,8 @@ class Package(Command): else: packager_class = DistTarball elif config.variants.uwp: - m.warning('Forcing tarball output for UWP package since MSIs are broken') + m.warning('Forcing single-tarball output for UWP package since MSIs are broken') + args.no_split = True packager_class = DistTarball m.action(_("Creating package for %s") % p.name) |