From 78b20d1361348c85291ece7a7ca136efffa0ed41 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 18 Aug 2016 15:47:14 -0400 Subject: Fix a bug in the OS-detect.pri file where the LIBPREFIX was not getting used properly. --- src-qt5/OS-detect.pri | 6 +++--- 1 file 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-.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"){ -- cgit