From b718c29265826af8e15eafc649443602624875a1 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 12 Mar 2018 21:40:40 +0100 Subject: solenv: the installer's -b parameter is unused "build" is hard-coded to "majorminor0". Change-Id: I15271544917f70b8ae029bd7542aecfe0a46befe --- solenv/bin/modules/installer/parameter.pm | 2 -- 1 file changed, 2 deletions(-) (limited to 'solenv/bin/modules') 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); } -- cgit