diff options
author | Ken Moore <moorekou@gmail.com> | 2014-12-22 09:35:00 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2014-12-22 09:35:00 -0500 |
commit | 0ba49626c6d589c6682466225a558b73f4e3f42c (patch) | |
tree | f70fca8731846df68cc34ca63f8457843d94f8e6 | |
parent | Merge branch 'master' of github.com:pcbsd/lumina (diff) | |
parent | fix hardcoded lrelease paths (diff) | |
download | lumina-0ba49626c6d589c6682466225a558b73f4e3f42c.tar.gz lumina-0ba49626c6d589c6682466225a558b73f4e3f42c.tar.bz2 lumina-0ba49626c6d589c6682466225a558b73f4e3f42c.zip |
Merge pull request #29 from rezso/master
fix hardcoded lrelease paths
-rw-r--r-- | lumina-desktop/lumina-desktop.pro | 2 | ||||
-rw-r--r-- | lumina-open/lumina-open.pro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/lumina-desktop.pro b/lumina-desktop/lumina-desktop.pro index 02581bdc..92dedd3d 100644 --- a/lumina-desktop/lumina-desktop.pro +++ b/lumina-desktop/lumina-desktop.pro @@ -17,7 +17,7 @@ TEMPLATE = app openbsd-g++4 { LRELEASE = lrelease4 } else { - LRELEASE = /usr/local/lib/qt5/bin/lrelease + LRELEASE = $$PREFIX/lib/qt5/bin/lrelease } SOURCES += main.cpp \ diff --git a/lumina-open/lumina-open.pro b/lumina-open/lumina-open.pro index ce0e231d..5bd79bf2 100644 --- a/lumina-open/lumina-open.pro +++ b/lumina-open/lumina-open.pro @@ -27,7 +27,7 @@ DEPENDPATH += ../libLumina openbsd-g++4 { LRELEASE = lrelease4 } else { - LRELEASE = lrelease-qt4 + LRELEASE = $$PREFIX/lib/qt5/bin/lrelease } TRANSLATIONS = i18n/lumina-open_af.ts \ |