From: Carl Hetherington Date: Thu, 17 Feb 2022 19:17:35 +0000 (+0100) Subject: Fix appimage build. X-Git-Tag: v2.16.2~2 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=7de03c75fc2ceb1ba2c5563003ac3d35f1c37197 Fix appimage build. --- diff --git a/cscript b/cscript index a4dcdd0f0..3259ed602 100644 --- a/cscript +++ b/cscript @@ -569,7 +569,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()) - elif target.platform != "linux": + elif target.platform != "linux" or target.detail == 'appimage': # Build here if the packaging step won't do it target.command('./waf configure --prefix=%s %s' % (target.directory, configure_options(target, options))) target.command('./waf')