Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/15
17 lines
669 B
Diff
17 lines
669 B
Diff
--- a/src/tools/syncqt/main.cpp
|
|
+++ b/src/tools/syncqt/main.cpp
|
|
@@ -851,12 +851,7 @@
|
|
|
|
bool headerFileExists = std::filesystem::exists(headerFile);
|
|
|
|
- std::filesystem::path headerFileRootName =
|
|
- std::filesystem::weakly_canonical(headerFile, ec).root_name();
|
|
- std::string aliasedFilepath = !ec && headerFileRootName == m_outputRootName
|
|
- ? std::filesystem::relative(headerFile, outputDir).generic_string()
|
|
- : headerFile.generic_string();
|
|
- ec.clear();
|
|
+ std::string aliasedFilepath = headerFile.generic_string();
|
|
|
|
std::string aliasPath = outputDir + '/' + m_currentFilename;
|
|
|