From: Manuel Nickschas Date: Tue, 22 Jul 2008 17:23:39 +0000 (+0200) Subject: Hopefully fixing the build problems on Debian-based distros X-Git-Tag: 0.3.0~240 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=89791e0d76b8f6b8f1001fb76911285145505cd1 Hopefully fixing the build problems on Debian-based distros This looks for lrelease-qt4 prior to looking for lrelease. I hope this works as expected and doesn't screw up things... --- diff --git a/cmake/modules/FindQt4.cmake b/cmake/modules/FindQt4.cmake index dc4969b2..6c1dd86c 100644 --- a/cmake/modules/FindQt4.cmake +++ b/cmake/modules/FindQt4.cmake @@ -1078,13 +1078,13 @@ IF (QT4_QMAKE_FOUND) ) FIND_PROGRAM(QT_LUPDATE_EXECUTABLE - NAMES lupdate + NAMES lupdate-qt4 lupdate PATHS ${QT_BINARY_DIR} NO_DEFAULT_PATH ) FIND_PROGRAM(QT_LRELEASE_EXECUTABLE - NAMES lrelease + NAMES lrelease-qt4 lrelease PATHS ${QT_BINARY_DIR} NO_DEFAULT_PATH )