diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-27 21:04:25 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-27 21:04:25 +0200 |
| commit | 9d1c856bf0bbcaf1c6d8324330d800a3a9a109fa (patch) | |
| tree | 1abc226ebdb30aaf3847c0aa0692b1c4ba6a154e /wscript | |
| parent | 018bb01d2190cb57ded144fcb3944c3312abbbba (diff) | |
Fix install of .xsd files to be more robust.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 17 |
1 files changed, 1 insertions, 16 deletions
@@ -236,22 +236,7 @@ def build(bld): if not bld.env.DISABLE_BENCHMARKS: bld.recurse('benchmark') - for i in ['SMPTE-429-7-2006-CPL.xsd', - 'SMPTE-429-8-2006-PKL.xsd', - 'SMPTE-429-9-2007-AM.xsd', - 'xmldsig-core-schema.xsd', - 'XMLSchema.dtd', - 'XMLSchema.xsd', - 'xml.xsd', - 'PROTO-ASDCP-CPL-20040511.xsd', - 'PROTO-ASDCP-PKL-20040311.xsd', - 'PROTO-ASDCP-AM-20040311.xsd', - 'PROTO-ASDCP-CC-CPL-20070926.xsd', - 'Main-Stereo-Picture-CPL.xsd', - 'DCSubtitle.v1.mattsson.xsd', - 'DCDMSubtitle-2010.xsd', - 'Dolby-2012-AD.xsd', - 'SMPTE-429-16.xsd' ]: + for i in os.listdir('xsd'): bld.install_files('${PREFIX}/share/libdcp/xsd', os.path.join('xsd', i)) for i in ['language', 'region', 'script', 'variant', 'extlang']: |
