diff options
author | Michael Stahl <mstahl@redhat.com> | 2018-03-12 21:40:40 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2018-03-12 21:50:32 +0100 |
commit | b718c29265826af8e15eafc649443602624875a1 (patch) | |
tree | 4090cfaf2f32da4526c637a1c9b0c94b3433fbd8 /solenv | |
parent | 396f085610860104390e47cd78a8b48c057f5f71 (diff) |
solenv: the installer's -b parameter is unused
"build" is hard-coded to "majorminor0".
Change-Id: I15271544917f70b8ae029bd7542aecfe0a46befe
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/parameter.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/solenv/bin/modules/installer/parameter.pm b/solenv/bin/modules/installer/parameter.pm index 7fcec04de70f..352b6f94c19b 100644 --- a/solenv/bin/modules/installer/parameter.pm +++ b/solenv/bin/modules/installer/parameter.pm @@ -41,7 +41,6 @@ The following parameter are needed: -i: Install path of the product (/opt/openofficeorg20) (optional) -p: Product from product list to be created (required) -l: Language of the product (comma and hash) (optional, defined in productlist) --b: Build, e.g. srx645 (optional) -simple: Path to do a simple install to -u: Path, in which zipfiles are unpacked (optional) -msitemplate: Source of the msi file templates (Windows compiler only) @@ -112,7 +111,6 @@ sub getparameter elsif ($param eq "-s") { $installer::globals::setupscriptname = shift(@ARGV); } elsif ($param eq "-p") { $installer::globals::product = shift(@ARGV); } elsif ($param eq "-l") { $installer::globals::languagelist = shift(@ARGV); } - elsif ($param eq "-b") { $installer::globals::build = shift(@ARGV); } elsif ($param eq "-dontunzip") { $installer::globals::dounzip = 0; } elsif ($param eq "-pro") { $installer::globals::pro = 1; } elsif ($param eq "-format") { $installer::globals::packageformat = shift(@ARGV); } |