diff options
Diffstat (limited to 'isolinux/setpkg')
-rw-r--r-- | isolinux/setpkg | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/isolinux/setpkg b/isolinux/setpkg index cc60f54e..e7f69a1c 100644 --- a/isolinux/setpkg +++ b/isolinux/setpkg @@ -10,7 +10,7 @@ if [ ! -d $TMP ]; then fi rm -f $TMP/SeTSERIES -dialog --title "PACKAGE SERIES SELECTION" --item-help --checklist \ +dialog --backtitle "Selecting software to install." --title "PACKAGE SERIES SELECTION" --item-help --output-separator "#" --checklist \ "Now it's time to select which general categories of software to install \ on your system. Use the spacebar to select or unselect the software you \ wish to install. You can use the up and down arrows to see all the \ @@ -23,7 +23,7 @@ ENTER key when you are finished." \ "E" "GNU Emacs" on "The E series contains the GNU Emacs advanced real-time display editor." \ "F" "FAQ lists, HOWTO documentation" on "The F series contains essential documentation for Linux system administrators." \ "K" "Linux kernel source" on "The K series contains the source code for the Linux kernel." \ -"KDE" "Qt and the K Desktop Environment for X" on "The KDE series contains the K Desktop Environment and related libraries." \ +"KDE" "The K Desktop Environment for X" on "The KDE series contains the K Desktop Environment for X." \ "KDEI" "International language support for KDE" off "The KDEI series provides support for languages other than US English in KDE." \ "L" "System Libraries (needed by KDE, GNOME, X, and more)" on "The L series contains important libraries needed by the rest of the system." \ "N" "Networking (TCP/IP, UUCP, Mail, News)" on "The N series contains network related clients and servers." \ @@ -45,5 +45,6 @@ fi INSTSETS="`cat $TMP/SeTSERIES | tr -d " "`" INSTSETS="`echo $INSTSETS | tr "\042" "#" `" INSTSETS="`echo $INSTSETS | tr "," "#" `" +INSTSETS="`echo $INSTSETS | tr -s "#" `" # Store the selection list: echo "$INSTSETS" > $TMP/SeTSERIES |