summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-02-17 20:17:35 +0100
committerCarl Hetherington <cth@carlh.net>2022-02-20 00:58:20 +0100
commitea3fe60a98f3feb4b1b2fdc68943da1b54f0a8c1 (patch)
tree1421e4bafbe3fcdd8d3911a8316714ac0d3f78b3 /cscript
parent731b231637cadee7671f9fa2fd493926dabb82e3 (diff)
Fix appimage build.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index f213b53c7..4e9b3b39a 100644
--- a/cscript
+++ b/cscript
@@ -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())
- 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')