fixqt4headers: Fix typo in QtMultimedia headers module name
Commit 003860b5
introduced QtMultimedia, but with a typo. It broke the
script.
Change-Id: Ie3fd536d90f52419818f36ba1b28d437b965dcdc
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
This commit is contained in:
parent
aacf4d0263
commit
f9f83e1ef7
@ -145,13 +145,13 @@ findQtHeaders('QtConcurrent', $qtdir);
|
|||||||
findQtHeaders('QtWidgets', $qtdir);
|
findQtHeaders('QtWidgets', $qtdir);
|
||||||
findQtHeaders('QtPrintSupport', $qtdir);
|
findQtHeaders('QtPrintSupport', $qtdir);
|
||||||
|
|
||||||
if (-d $qtdir . '/include/QtMultiMedia') {
|
if (-d $qtdir . '/include/QtMultimedia') {
|
||||||
findQtHeaders('QtMultiMedia', $qtdir);
|
findQtHeaders('QtMultimedia', $qtdir);
|
||||||
findQtHeaders('QtMultiMediaWidgets', $qtdir);
|
findQtHeaders('QtMultimediaWidgets', $qtdir);
|
||||||
} elsif (-d $qtdir . '/../qtmultimedia' ) {
|
} elsif (-d $qtdir . '/../qtmultimedia' ) {
|
||||||
# This is the case if QTDIR points to a source tree instead of an installed Qt
|
# This is the case if QTDIR points to a source tree instead of an installed Qt
|
||||||
findQtHeaders('QtMultiMedia', $qtdir . '/../qtmultimedia');
|
findQtHeaders('QtMultimedia', $qtdir . '/../qtmultimedia');
|
||||||
findQtHeaders('QtMultiMediaWidgets', $qtdir . '/../qtmultimedia');
|
findQtHeaders('QtMultimediaWidgets', $qtdir . '/../qtmultimedia');
|
||||||
}
|
}
|
||||||
|
|
||||||
# Support porting from "Qt 4.99" QtDeclarative to QtQuick (QQuickItem et al)
|
# Support porting from "Qt 4.99" QtDeclarative to QtQuick (QQuickItem et al)
|
||||||
|
Loading…
Reference in New Issue
Block a user