syncqt: always use absolute path in the generated headers

The relative path + source path can be tool long for windows

Fixes: QTBUG-120758
Pick-to: 6.5
Change-Id: I42ed4f3bbf39d31bf37a5bc76eb18f473661346b
Reviewed-by:  Alexey Edelev <alexey.edelev@qt.io>
(cherry picked from commit b4246a5c28472de3c4b6a85a3daf4a1d578894ab)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit 8e424eba741f882d3fc79c97910217b5bcfd2a3b)
This commit is contained in:
Florian de Gaulejac 2024-01-11 11:27:49 +01:00 committed by Qt Cherry-pick Bot
parent 1759fee357
commit 4f57f76a96

View File

@ -866,12 +866,7 @@ public:
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;