diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/install2.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index d702ec789..0e138cbf5 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- allow setting compssListLevel from command line + Version 11.50.3 - 22 September 2008 - fix/workaround crash when setting banner background diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index dd054a208..44b9897d4 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -376,6 +376,7 @@ sub main { suppl => sub { $o->{supplmedia} = $v }, askmedia => sub { $o->{askmedia} = 1 }, restore => sub { $::isRestore = 1 }, + compssListLevel => sub { $o->{compssListLevel} = $v }, }}{lc $n}; &$f if $f; } %cmdline; |