summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-09-21 22:14:39 +0200
committerCarl Hetherington <cth@carlh.net>2025-09-21 22:14:39 +0200
commitfe29e20ab6e2e5c4ba9dbd2e56adb1ef6e79100e (patch)
tree51e386688554ab3ded1fc8762903d8f1a51c3cf3
parent9f43a8db47466bac0c990fb05f1297f122f2faeb (diff)
Ubuntu 14.04 also needs --static-boost.v0.17.14appimage-on-ubuntu14
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index a753ca4..3ae0be3 100644
--- a/cscript
+++ b/cscript
@@ -24,7 +24,7 @@ def build(target, options):
cmd = './waf configure --prefix=%s' % target.directory
if target.platform == 'linux':
cmd += ' --static'
- if (target.distro, target.version) in [('centos', '7'), ('ubuntu', '16.04')]:
+ if (target.distro, target.version) in [('centos', '7'), ('ubuntu', '16.04'), ('ubuntu', '14.04')]:
cmd += ' --static-boost'
elif target.platform == 'windows':
cmd += f' --target-windows-{target.bits}'