From 583065c5332e628dd024018b66bc9213d5ea4249 Mon Sep 17 00:00:00 2001 From: Alexey Edelev Date: Mon, 3 Jul 2023 17:42:48 +0200 Subject: [PATCH] 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. Fixes: QTBUG-112956 Change-Id: I2e5375ee0dbd87a76135594cd489bb67f6d3456d Reviewed-by: Qt CI Bot Reviewed-by: Alexandru Croitor (cherry picked from commit 97268742e4869875cb98a1a9fc7884d16d7e7e69) Reviewed-by: Qt Cherry-pick Bot --- src/tools/syncqt/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/syncqt/main.cpp b/src/tools/syncqt/main.cpp index 439b8b503a0..055f1f4f30c 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; }