From 642fb4270be3305ff7416998dbf8e82ff4abe461 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Wed, 4 Jul 2018 20:00:41 +0200 Subject: [PATCH] Fixed rba::Technology test. Now all tests are passing with Qt. --- src/tl/tl/tlFileUtils.cc | 3 +++ 1 file changed, 3 insertions(+) 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)