aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrezso <rezso@rezso.net>2014-12-22 15:27:16 +0100
committerrezso <rezso@rezso.net>2014-12-22 15:27:16 +0100
commitd560b4678e9096fcbf09b57236348c4bd5315070 (patch)
treef70fca8731846df68cc34ca63f8457843d94f8e6
parentMerge branch 'master' of github.com:pcbsd/lumina (diff)
downloadlumina-d560b4678e9096fcbf09b57236348c4bd5315070.tar.gz
lumina-d560b4678e9096fcbf09b57236348c4bd5315070.tar.bz2
lumina-d560b4678e9096fcbf09b57236348c4bd5315070.zip
fix hardcoded lrelease paths
-rw-r--r--lumina-desktop/lumina-desktop.pro2
-rw-r--r--lumina-open/lumina-open.pro2
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 \
bgstack15