diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-04-06 20:58:31 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-04-06 20:58:31 +0000 |
commit | 321c70662f99cea516e69c80942975763a17259c (patch) | |
tree | 763533bfb80c18fa9b3f3e035d790ad601166d88 | |
parent | ad9675b6c07a3384760e1acd6aec0c141e1e9134 (diff) |
install-tl.pl: --gui now default on Windows.
git-svn-id: svn://tug.org/texlive/trunk@7338 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/install-tl.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/install-tl.pl b/Master/install-tl.pl index eacb96f6726..56711e63172 100755 --- a/Master/install-tl.pl +++ b/Master/install-tl.pl @@ -135,7 +135,6 @@ my $opt_media = ""; my $opt_url = ""; my $opt_profile = ""; my $opt_no_cls=0; -my $opt_gui = 0; my $opt_nogui = 0; my $opt_debug = 0; my $opt_ddebug = 0; @@ -147,6 +146,8 @@ my $opt_arch = 0; my $opt_portable = 0; my $opt_help = 0; my $opt_version = 0; +my $opt_gui = 0; +$opt_gui = 1 if (win32); # default language for GUI installer $::lang = "en"; |