diff options
author | Karl Berry <karl@freefriends.org> | 2006-06-01 23:02:50 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-06-01 23:02:50 +0000 |
commit | ebe72e82bf60a9145aae276ea6f1f582ecf35253 (patch) | |
tree | 62ce46b389a722bf52ab0b63ef19eecdff2c95ca /Master/common.sh | |
parent | e3b4e81aa2a433dd4641ffa32193a748031a199a (diff) |
add cygwin to arch lists
git-svn-id: svn://tug.org/texlive/trunk@1649 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/common.sh')
-rwxr-xr-x | Master/common.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Master/common.sh b/Master/common.sh index da65fb1dc2a..f64cc072fad 100755 --- a/Master/common.sh +++ b/Master/common.sh @@ -33,6 +33,7 @@ setvars() # changed to _. p_alpha_linux_n='DEC Alpha with GNU/Linux' p_alphaev5_osf_n='DEC Alphaev5 OSF' + p_i386_cygwin_n='Intel x86 with Cygwin' p_i386_darwin_n='Intel x86 with MacOSX/Darwin' p_i386_freebsd_n='Intel x86 with FreeBSD' p_i386_linux_n='Intel x86 with GNU/Linux' @@ -552,7 +553,7 @@ menu_this_platform() while true; do cls textvar_show screen_5; echo - case `getopt NABCDEFGHIJRQ 'Select the platform you are currently on'` in + case `getopt NABCDEFGHIJKRQ 'Select the platform you are currently on'` in N) this_system=''; this_platform_set ;; A) this_system=i386_linux; this_platform_set ;; B) this_system=win32; this_platform_set ;; @@ -563,8 +564,9 @@ menu_this_platform() G) this_system=powerpc_aix; this_platform_set ;; H) this_system=sparc_solaris; this_platform_set ;; I) this_system=i386_freebsd; this_platform_set ;; - J) this_system=x86_64_linux; this_platform_set ;; - K) this_system=sparc_linux; this_platform_set ;; + J) this_system=i386_cygwin; this_platform_set ;; + K) this_system=x86_64_linux; this_platform_set ;; + L) this_system=sparc_linux; this_platform_set ;; R) total_stat; return ;; Q) exit_on_confirm ;; esac @@ -816,7 +818,8 @@ screen_5='Current platform: $this_platform_n <G> $p_powerpc_aix_n <H> $p_sparc_solaris_n <I> $p_i386_freebsd_n - <J> $p_x86_64_linux_n + <J> $p_i386_cygwin_n + <K> $p_x86_64_linux_n <K> $p_sparc_linux_n <R> return to main menu |