diff options
author | Norbert Preining <preining@logic.at> | 2008-05-01 11:13:15 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-05-01 11:13:15 +0000 |
commit | 1bd04b179cda87db924a838b28b6ea6fc9547e5d (patch) | |
tree | 492a3e870b67019ecc4333b05a6fa8e1fda46df1 | |
parent | c546a8b525b0386d05fb203da8fbb82de2effc99 (diff) |
make autoabbrev=0 actually work?
git-svn-id: svn://tug.org/texlive/trunk@7774 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/install-tl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl index bd316d001d1..d0e20d7cdf9 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -78,8 +78,11 @@ if (win32) { &create_uninstaller )); } -use Getopt::Long; -$Getopt::Long::autoabbrev=0; + +#use Getopt::Long; +#$Getopt::Long::autoabbrev=0; +use Getopt::Long qw(:config no_autoabbrev); + use strict; |