diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/install/install2.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 9af32cec4..2a16bff1e 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- installer options handling: + o ignore case for options line in previous releases + Version 17.75 - 17 March 2017 - partitioning: diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index 16f75dc8c..1cf5e6773 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -3,7 +3,7 @@ package install::install2; use diagnostics; use strict; use vars qw($o); -use Getopt::Long qw(GetOptionsFromArray :config no_ignore_case no_auto_abbrev no_getopt_compat pass_through); +use Getopt::Long qw(GetOptionsFromArray :config no_auto_abbrev no_getopt_compat pass_through); BEGIN { $::isInstall = 1 } |