mumble.pro: use forward slash for GENQRC also on Windows

This fixes a problem with MinGW on Linux where the "win32" block is triggered and the two backslashes are used, resulting in a path without slashes.
Python on Windows handles the path correctly with both methods.
This commit is contained in:
Davide Beatrici 2017-01-23 19:53:53 +01:00
parent a08c509de6
commit 3bc58e8f62
No known key found for this signature in database
GPG Key ID: 468AA0D98C811042

View File

@ -643,9 +643,6 @@ CONFIG(no-update) {
}
}
GENQRC = $$PYTHON ../../scripts/generate-mumble_qt-qrc.py
win32 {
GENQRC = $$PYTHON ..\\..\\scripts\\generate-mumble_qt-qrc.py
}
!system($$GENQRC mumble_qt_auto.qrc $$[QT_INSTALL_TRANSLATIONS] $$QT_TRANSLATIONS_FALLBACK_DIR) {
error(Failed to run generate-mumble_qt-qrc.py script)
}