We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 844c7cf commit 4e88d43Copy full SHA for 4e88d43
cscript
@@ -24,7 +24,7 @@ def build(target, options):
24
cmd = './waf configure --prefix=%s' % target.directory
25
if target.platform == 'linux':
26
cmd += ' --static'
27
- if target.distro == 'centos' or (target.distro == 'ubuntu' and target.version == '16.04'):
+ if (target.distro, target.version) in [('centos', '7'), ('ubuntu', '16.04')]:
28
cmd += ' --static-boost'
29
elif target.platform == 'windows':
30
cmd += f' --target-windows-{target.bits}'
0 commit comments