nixpkgs/pkgs/applications/networking/p2p/qbittorrent/fix-lrelease.patch

19 lines
660 B
Diff
Raw Normal View History

diff --git a/qm_gen.pri b/qm_gen.pri
2016-01-20 10:10:51 +01:00
index 5454440..2d5990c 100644
--- a/qm_gen.pri
+++ b/qm_gen.pri
2016-01-20 10:10:51 +01:00
@@ -5,12 +5,7 @@ isEmpty(QMAKE_LRELEASE) {
win32|os2:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
unix {
2016-01-20 10:10:51 +01:00
- equals(QT_MAJOR_VERSION, 4) {
- !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease-qt4 }
2016-01-20 10:10:51 +01:00
- }
- equals(QT_MAJOR_VERSION, 5) {
- !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease-qt5 }
- }
+ !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease }
} else {
!exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease }
}