aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-08-18 15:47:14 -0400
committerKen Moore <moorekou@gmail.com>2016-08-18 15:47:14 -0400
commit78b20d1361348c85291ece7a7ca136efffa0ed41 (patch)
treeecbe411e4a93741ae94c2aed5ada514f8b2ac35a
parentAdd a checkbox to the compton page for enabling/disabling compositing. (diff)
downloadlumina-78b20d1361348c85291ece7a7ca136efffa0ed41.tar.gz
lumina-78b20d1361348c85291ece7a7ca136efffa0ed41.tar.bz2
lumina-78b20d1361348c85291ece7a7ca136efffa0ed41.zip
Fix a bug in the OS-detect.pri file where the LIBPREFIX was not getting used properly.
-rw-r--r--src-qt5/OS-detect.pri6
1 files changed, 3 insertions, 3 deletions
diff --git a/src-qt5/OS-detect.pri b/src-qt5/OS-detect.pri
index 54ffb2ce..238e1b53 100644
--- a/src-qt5/OS-detect.pri
+++ b/src-qt5/OS-detect.pri
@@ -15,8 +15,8 @@
# L_ETCDIR: Directory to install/use global configs
# L_SHAREDIR: Directory to install the general Lumina files
# L_INCLUDEDIR: Directory to install include files
-# L_SESSDIR: Directory to place *.desktop file for starting the Lumina session
-# LRELEASE: binary path to the Qt lrelease utility (usually auto-set)
+# L_SESSDIR: Directory to place *.desktop file for starting the Lumina session
+# LRELEASE: binary path to the Qt lrelease utility (usually auto-set)
# =============================================
# Note: Make sure the OS variable matches the name of a libLumina/LuminaOS-<OS>.cpp file
# =============================================
@@ -31,7 +31,7 @@ isEmpty(OS){
#Setup the default values for build settings (if not explicitly set previously)
isEmpty(PREFIX){ PREFIX=/usr/local }
isEmpty(LIBPREFIX){ LIBPREFIX=$${PREFIX}/lib }
-
+ message("General Settings: PREFIX=$${PREFIX}, LIBPREFIX=$${LIBPREFIX}")
#Now go through and setup any known OS build settings
# which are different from the defaults
equals(QMAKE_HOST.os, "DragonFly"){
bgstack15