diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-03-23 16:29:19 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-03-24 14:34:51 +0100 |
commit | b23ebb909230ab614e9b32e1a3833f109e55f5ca (patch) | |
tree | 3ff65a830ebddc5dde458e4b5b36d86f2050b9a5 | |
parent | 62c68dc0359ae9cc0c1fabacfd16fba718a6fc58 (diff) | |
download | drakx-b23ebb909230ab614e9b32e1a3833f109e55f5ca.tar drakx-b23ebb909230ab614e9b32e1a3833f109e55f5ca.tar.gz drakx-b23ebb909230ab614e9b32e1a3833f109e55f5ca.tar.bz2 drakx-b23ebb909230ab614e9b32e1a3833f109e55f5ca.tar.xz drakx-b23ebb909230ab614e9b32e1a3833f109e55f5ca.zip |
ignore case for options
commit 560f9ca983d743cc42701c24546ac8c2080a13fe introduced this small
regression, which is important to fix for next commit, else
s/compsslistlevel/compssListLevel/ won't work as intended
-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 } |