summaryrefslogtreecommitdiff
path: root/src/lib/cross_linux.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-02-08 21:10:49 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-08 21:10:49 +0100
commit9401afc97abeaf4b63c867393e5047e385002f8a (patch)
treecbc3ed276e765a781144f65a0abf817e7f6c1528 /src/lib/cross_linux.cc
parentae5d6b702af178452f84b85dfa13b62be577e3f5 (diff)
Fix a few unwrapped boost::filesystem calls that had crept in.
Diffstat (limited to 'src/lib/cross_linux.cc')
-rw-r--r--src/lib/cross_linux.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cross_linux.cc b/src/lib/cross_linux.cc
index d9ab73706..96fa3b161 100644
--- a/src/lib/cross_linux.cc
+++ b/src/lib/cross_linux.cc
@@ -86,7 +86,7 @@ boost::filesystem::path
resources_path ()
{
auto installed = directory_containing_executable().parent_path() / "share" / "dcpomatic2";
- if (boost::filesystem::exists(installed)) {
+ if (dcp::filesystem::exists(installed)) {
return installed;
}