aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsasongko <sasongko@darkstar>2017-02-18 13:50:03 +0700
committersasongko <sasongko@darkstar>2017-02-18 13:50:03 +0700
commit71f1b444ca19e0e2730d33c9159f8bccedd05a79 (patch)
tree3f314313eba3d16cfb7b5e39c7250bdd88894b14
parentGet the next phase of Lumina2 working: The context menu for the desktop itself. (diff)
downloadlumina-71f1b444ca19e0e2730d33c9159f8bccedd05a79.tar.gz
lumina-71f1b444ca19e0e2730d33c9159f8bccedd05a79.tar.bz2
lumina-71f1b444ca19e0e2730d33c9159f8bccedd05a79.zip
add Slackware
-rw-r--r--src-qt5/OS-detect.pri3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/OS-detect.pri b/src-qt5/OS-detect.pri
index a7f917fa..05604b71 100644
--- a/src-qt5/OS-detect.pri
+++ b/src-qt5/OS-detect.pri
@@ -67,8 +67,9 @@ isEmpty(OS){
LINUX_DISTRO = $$system(lsb_release -si)
} else:exists(/etc/gentoo-release){
LINUX_DISTRO = Gentoo
+ } else:exists(/etc/slackware-version){
+ LINUX_DISTRO = Slackware
}
- }
#Apply any special rules for particular distros
equals(LINUX_DISTRO,"Fedora"){
isEmpty(L_ETCDIR){ L_ETCDIR=/etc }
bgstack15