summaryrefslogtreecommitdiff
path: root/src/lib/config.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-09-24 01:26:17 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-24 01:26:17 +0200
commita5a3624943ccb9769d363a84797e00cf24bbf958 (patch)
tree8a34ad85f81ae68c6f037027a28da7f8b57b2bb0 /src/lib/config.cc
parentffa9430ad7519fb1b291af74f3bdae74cc26f453 (diff)
Fix build with new boost (e.g. on Arch) (#2868)
Diffstat (limited to 'src/lib/config.cc')
-rw-r--r--src/lib/config.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index 384db5cde..5dafd5785 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -1514,7 +1514,7 @@ void
Config::copy_and_link (boost::filesystem::path new_file) const
{
write ();
- dcp::filesystem::copy_file(config_read_file(), new_file, boost::filesystem::copy_option::overwrite_if_exists);
+ dcp::filesystem::copy_file(config_read_file(), new_file, dcp::filesystem::CopyOptions::OVERWRITE_EXISTING);
link (new_file);
}