Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2014-12-24 14:38:42 +0300
committerMikkel Krautz <mikkel@krautz.dk>2014-12-24 14:38:42 +0300
commit630a17baf03328db1d9742dcde92cc3f239b830a (patch)
tree99270fcedcdb6c413736f031c3d668faefbaf8fa
parent88cf21d645a54d6dcecfb86f704d05c5e1d3e292 (diff)
Use $$shell_path to ensure QMAKE_LRELEASE is formatted correctly regardless of the OS.
-rw-r--r--src/mumble/mumble.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mumble/mumble.pro b/src/mumble/mumble.pro
index ceedb62d1..d36f8ac84 100644
--- a/src/mumble/mumble.pro
+++ b/src/mumble/mumble.pro
@@ -235,7 +235,8 @@ CONFIG(static) {
isEmpty(QMAKE_LRELEASE) {
QMAKE_QMAKE_BASE = $$basename(QMAKE_QMAKE)
- QMAKE_LRELEASE = $$dirname(QMAKE_QMAKE)/$$replace(QMAKE_QMAKE_BASE,qmake,lrelease)
+ QMAKE_LRELEASE_PATH = $$dirname(QMAKE_QMAKE)/$$replace(QMAKE_QMAKE_BASE,qmake,lrelease)
+ QMAKE_LRELEASE = $$shell_path($$QMAKE_LRELEASE_PATH)
}
unix:!CONFIG(bundled-speex):system(pkg-config --atleast-version=1.2 speexdsp) {