summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-02-17 20:17:35 +0100
committerCarl Hetherington <cth@carlh.net>2022-02-17 20:17:35 +0100
commit7de03c75fc2ceb1ba2c5563003ac3d35f1c37197 (patch)
tree2b669e625c847464a81e65115863735d02f48535
parent7daffaa58538a8319000db811a6f65af01c186e0 (diff)
Fix appimage build.
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
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')