diff options
-rwxr-xr-x | make_slackware_live.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index d381c21..dc5fa80 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -200,7 +200,12 @@ SL_REPO_URL=${SL_REPO_URL:-"rsync.osuosl.org::slackware"} DEF_SL_REPO_URL=${SL_REPO_URL} # List of Slackware package series - each will become a squashfs module: -SEQ_SLACKWARE="tagfile:a,ap,d,e,f,k,kde,l,n,t,tcl,x,xap,xfce,y pkglist:slackextra" +if [ $(echo ${SL_VERSION}|cut -d. -f1) -eq 14 ]; then + # Slackware up and until 14.2 has KDE4 which includes the 'kdei' package set: + SEQ_SLACKWARE="tagfile:a,ap,d,e,f,k,kde,kdei,l,n,t,tcl,x,xap,xfce,y pkglist:slackextra" +else + SEQ_SLACKWARE="tagfile:a,ap,d,e,f,k,kde,l,n,t,tcl,x,xap,xfce,y pkglist:slackextra" +fi # Stripped-down Slackware with XFCE as the Desktop Environment: # - each series will become a squashfs module: |