diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-14 13:04:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-14 13:04:16 +0200 |
| commit | 4c804a0d92ebd03b70bfc7f736fcaf5f77cb3bb7 (patch) | |
| tree | ed4d7080771f529980f1dafe48347ee4e2795c37 /src/lib/verify_dcp_job.cc | |
| parent | ff623a7f045575169820b28a9e1d4ee10ec2fb69 (diff) | |
Add xsd_path() and use it to fix access to .xsd files on Linux (#1830).
Diffstat (limited to 'src/lib/verify_dcp_job.cc')
| -rw-r--r-- | src/lib/verify_dcp_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/verify_dcp_job.cc b/src/lib/verify_dcp_job.cc index 3d28fe759..f6dc10063 100644 --- a/src/lib/verify_dcp_job.cc +++ b/src/lib/verify_dcp_job.cc @@ -68,7 +68,7 @@ VerifyDCPJob::update_stage (string s, optional<boost::filesystem::path> path) void VerifyDCPJob::run () { - _notes = dcp::verify (_directories, bind (&VerifyDCPJob::update_stage, this, _1, _2), bind (&VerifyDCPJob::set_progress, this, _1, false), shared_path() / "xsd"); + _notes = dcp::verify (_directories, bind (&VerifyDCPJob::update_stage, this, _1, _2), bind (&VerifyDCPJob::set_progress, this, _1, false), xsd_path()); bool failed = false; BOOST_FOREACH (dcp::VerificationNote i, _notes) { |
