aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/lumina-desktop.pro
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-28 13:14:39 -0400
committerKen Moore <moorekou@gmail.com>2016-06-28 13:14:39 -0400
commitc1ef1645eb0ca856f5f5cb6c4acb9fc1115ca88f (patch)
tree24a29b31675051dda0362859c21ab89a4cd57503 /src-qt5/core/lumina-desktop/lumina-desktop.pro
parentCleanup the build system for how the special OS-specific config file/wallpape... (diff)
downloadlumina-c1ef1645eb0ca856f5f5cb6c4acb9fc1115ca88f.tar.gz
lumina-c1ef1645eb0ca856f5f5cb6c4acb9fc1115ca88f.tar.bz2
lumina-c1ef1645eb0ca856f5f5cb6c4acb9fc1115ca88f.zip
Update the coming-soon 0.9.1 port makefile for FreeBSD, and also setup the "DEFAULT_SETTINGS=<OS>" build flag for installing config files or desktop wallpapers for other OS's.
Diffstat (limited to 'src-qt5/core/lumina-desktop/lumina-desktop.pro')
-rw-r--r--src-qt5/core/lumina-desktop/lumina-desktop.pro6
1 files changed, 3 insertions, 3 deletions
diff --git a/src-qt5/core/lumina-desktop/lumina-desktop.pro b/src-qt5/core/lumina-desktop/lumina-desktop.pro
index 4bf38a08..4cebf3de 100644
--- a/src-qt5/core/lumina-desktop/lumina-desktop.pro
+++ b/src-qt5/core/lumina-desktop/lumina-desktop.pro
@@ -89,9 +89,9 @@ conf.path = $${L_ETCDIR}
#Now do any OS-specific defaults (if available)
#First see if there is a known OS override first
-TRUEOS{
- message("Installing defaults for OS: TrueOS")
- OS=TrueOS
+!isEmpty(DEFAULT_SETTINGS){
+ message("Installing defaults settings for OS: $${DEFAULT_SETTINGS}")
+ OS=$${DEFAULT_SETTINGS}
}
exists("defaults/luminaDesktop-$${OS}.conf"){
message(" -- Found OS-specific system config file: $${OS}");
bgstack15