diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-02-19 21:16:17 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-02-20 00:58:47 +0100 |
| commit | 16831c6c47443874c078984cd5d6d03e0803c8be (patch) | |
| tree | 899fd57110e1d9defb77ba2ba4eeeccd028db7b7 /cscript | |
| parent | 7f6f5b60813efcf2610ead424ea216d59a256482 (diff) | |
Try to fix for further cdist adventures.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -456,7 +456,7 @@ def configure_options(target, options): return opt -def build(target, options): +def build(target, options, for_package): if target.platform == 'flatpak': target.checkout_dependencies() prefix = 'https://dcpomatic.com/deps' @@ -571,7 +571,7 @@ def build(target, options): with open('build/com.dcpomatic.DCP-o-matic.json', 'w') as outfile: json.dump(desc, outfile) target.command('%s --repo=build/platform/repo build/platform/flatpak build/com.dcpomatic.DCP-o-matic.json' % target.flatpak_builder()) - else: + elif target.platform != 'linux' or target.detail == 'appimage' or not for_package: target.command('./waf configure --prefix=%s %s' % (target.directory, configure_options(target, options))) target.command('./waf') target.command('./waf install') @@ -713,10 +713,6 @@ def make_appimage(target, nice_name, internal_name, version): def package(target, version, options): """version: DCP-o-matic version string""" - if target.platform != 'linux' or target.detail == 'appimage': - # In most cases we need to build ourselves before packaging, but on some Linux targets the packaging - # tool wants to build DCP-o-matic so we don't bother here. - build(target, options) if target.platform == 'windows': return package_windows(target) elif target.platform == 'linux': |
