diff --git a/src/tl/tl/tlFileUtils.cc b/src/tl/tl/tlFileUtils.cc index b896ce8c6..39297aa56 100644 --- a/src/tl/tl/tlFileUtils.cc +++ b/src/tl/tl/tlFileUtils.cc @@ -668,6 +668,9 @@ std::string relative_path (const std::string &base, const std::string &p) bool is_same_file (const std::string &a, const std::string &b) { + if (tl::normalize_path (a) == tl::normalize_path (b)) { + return true; + } #if defined(_WIN32)