diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-07-20 15:00:18 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-07-20 15:00:18 +0200 |
| commit | 7f97a21bf833ddd63f54acd75a11f63c8f435d44 (patch) | |
| tree | a86262fbfbd40c90656f24b0e47d3972fbca25ac /wscript | |
| parent | e21dc264ac980b42395d6f23b6eccf378c842205 (diff) | |
fixup! Find libasdcp-dcpomatic and xerces-c in a less flaky way.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -169,9 +169,10 @@ def configure(conf): conf.check_cfg(package='xerces-c', args='--cflags --libs', uselib_store='XERCES', mandatory=True) if conf.options.static: conf.env.STLIB_OPENJPEG = ['openjp2'] - for lib in ('asdcp-dcpomatic', 'kumu-dcpomatic'): + libs = ['asdcp-dcpomatic', 'kumu-dcpomatic'] + for lib in libs: conf.env.LIB_ASDCPLIB_DCPOMATIC.remove(lib) - conf.env.STLIB_ASDCPLIB_DCPOMATIC.append(lib) + conf.env.STLIB_ASDCPLIB_DCPOMATIC = libs conf.env.LIB_CXML.remove('cxml') conf.env.STLIB_CXML.append('cxml') |
