summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2018-04-19 18:19:13 +0200
committerJani Heikkinen <jani.heikkinen@qt.io>2018-04-25 10:28:31 +0000
commite46f9d68d8a8cc75c011fb304f064b927a784d56 (patch)
treeb40c48e0f357dc4b6a6700e5456d1bfc99e0e4a3 /bin
parent967bb3f0d8d8c65bd1e09011d9daac21ab51b585 (diff)
syncqt: fix CamelCase aliases for injected headers
don't put them into GENERATED_HEADER_FILES, as they obviously cannot be found in a pre-synced source dir. instead, let the injection code itself add them to INJECTED_HEADER_FILES. Task-number: QTBUG-67813 Change-Id: Id2a7c565b14fcba8aba9d1dd8b1dd39c586d0d91 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/syncqt.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/syncqt.pl b/bin/syncqt.pl
index 3616db6f4b..f202599fe0 100755
--- a/bin/syncqt.pl
+++ b/bin/syncqt.pl
@@ -1086,7 +1086,7 @@ foreach my $lib (@modules_to_sync) {
# }
my $class_header = "$class ";
$pri_install_gfiles .= $class_header
- unless($pri_install_gfiles =~ $class_header);
+ unless ($shadow || $pri_install_gfiles =~ $class_header);
$injection .= ":$class";
}