summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorAlexey Edelev <alexey.edelev@qt.io>2023-07-03 17:42:48 +0200
committerAlexey Edelev <alexey.edelev@qt.io>2023-07-04 16:53:16 +0200
commit97268742e4869875cb98a1a9fc7884d16d7e7e69 (patch)
treefa7c35eaf0a97d54eff48dd25408f6bc4722bd43 /src/tools
parent8c2c4f178a1722fc8c749ca6ee894df151808138 (diff)
Install the missing deprecated header files
Deprecated Qt header files generated by syncqt were missing in installation package of Qt, after migration to cpp based syncqt. Restore them. Note: we didn't receive bugs since 6.5 release so far. I would check the existing files and remove them completely in 6.7. See QTBUG-115029. Pick-to: 6.5 6.6 Fixes: QTBUG-112956 Change-Id: I2e5375ee0dbd87a76135594cd489bb67f6d3456d Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/syncqt/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/syncqt/main.cpp b/src/tools/syncqt/main.cpp
index 439b8b503a..055f1f4f30 100644
--- a/src/tools/syncqt/main.cpp
+++ b/src/tools/syncqt/main.cpp
@@ -1467,6 +1467,7 @@ public:
<< "#include <" << replacement << ">\n"
<< "#endif\n";
writeIfDifferent(m_commandLineArgs->includeDir() + '/' + it->first, buffer.str());
+ m_producedHeaders.insert(it->first);
}
return true;
}