diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2013-12-03 23:00:20 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-12-03 13:03:09 -0800 |
commit | 8003377622e53b3205bebf621fbd887f567f4f57 (patch) | |
tree | a0ee4db06c313f6409792ad746eb3e1eba0827bc /subsurface-install.pri | |
parent | b1febf17b1bfd8f0582b4cb9922ba13ae989cb33 (diff) | |
download | subsurface-8003377622e53b3205bebf621fbd887f567f4f57.tar.gz |
qmake: Fix unescaped backslashes issues
We need to espace the backslash with '\\' on win32.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-install.pri')
-rw-r--r-- | subsurface-install.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subsurface-install.pri b/subsurface-install.pri index 1cf4f2f0c..a7aa99cd4 100644 --- a/subsurface-install.pri +++ b/subsurface-install.pri @@ -158,7 +158,7 @@ XSLTDIR = $(DATADIR)/subsurface } !isEmpty(TRANSLATIONS) { isEmpty(QMAKE_LRELEASE) { - win32: QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\lrelease.exe + win32: QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe else: QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease } isEmpty(TS_DIR):TS_DIR = translations |