diff options
author | Karl Berry <karl@freefriends.org> | 2006-12-25 01:18:21 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-12-25 01:18:21 +0000 |
commit | 4f7b8b7b0c8958695817dd293ce152e79694a609 (patch) | |
tree | cd6d0c070117bc85fe8473246d5dd4ddcb792c9b /Master/common.sh | |
parent | 37c47624807322345080f2344ade14a58f721ee6 (diff) |
(menu_schemes): don't show collections by default.
git-svn-id: svn://tug.org/texlive/trunk@2892 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/common.sh')
-rwxr-xr-x | Master/common.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Master/common.sh b/Master/common.sh index e3667ba288a..bb2d17e3ce1 100755 --- a/Master/common.sh +++ b/Master/common.sh @@ -602,15 +602,16 @@ menu_schemes() echo $key $name done | pr -t -2 - echo - echo Current scheme is [$selected_scheme]. - echo "[Collections: $selected_collections]" | sed 's/tex_//g' | fmt - echo "[Packages: $selected_packages]" | sed 's/tex_//g' | fmt + echo "Current scheme: [$selected_scheme]." echo - echo ' Press <R> to return to main menu, <Q> to quit' + echo ' Press <S> to see collections for this scheme,' + echo ' <R> to return to main menu, <Q> to quit' K=`getopt ABCDEFGHIJKLMNOPQRSTUVWXYZ ' or press key to select a scheme'` case $K in - R) total_stat; return ;; Q) exit_on_confirm;; + R) total_stat; return ;; + S) echo "[Collections: $selected_collections]" \ + | sed 's/tex_//g' | fmt;; *) eval W=\"\$SCHEMES_${K}\" selected_scheme=$W scheme_select $W @@ -1330,11 +1331,10 @@ common_end_install() if $have_system; then runsetup echo - echo "Add $bindir" >&2 - echo " to your PATH for current and future sessions." >&2 - echo echo "Add $TEXDIR/texmf/doc/man to MANPATH." >&2 echo "Add $TEXDIR/texmf/doc/info to INFOPATH." >&2 + echo "Most importantly, add $bindir" >&2 + echo " to your PATH for current and future sessions." >&2 if test "$pd" = i386-solaris; then # we should do this if i386-solaris is installed, not just if it's |