From 3bc58e8f62eda2cd01c188b4400ad4aaa13f2ff4 Mon Sep 17 00:00:00 2001 From: Davide Beatrici Date: Mon, 23 Jan 2017 19:53:53 +0100 Subject: [PATCH] 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. --- src/mumble/mumble.pro | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mumble/mumble.pro b/src/mumble/mumble.pro index f70fe16cd..449751680 100644 --- a/src/mumble/mumble.pro +++ b/src/mumble/mumble.pro @@ -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) }