my $with_submodules = 0; #didn't export sub modules source code.
my $work_done = 0; # Whether build jobs finished
my $release_tag = ""; # Override Release in spec file
+my $nocumulate = 0; # Whether build without cumulative build.
GetOptions (
"repository=s" => \@repos,
"profiling=s" => \$profiling,
"with-submodules" => \$with_submodules,
"release=s" => \$release_tag,
+ "nocumulate" => \$nocumulate,
);
if ( $help ) {
--tarfile
generate tar file for dependence & reverse dependence xml file.
+
+ --nocumulate
+ build package without cumulatve build.
";
exit(0);
}
if ($release_tag ne "") {
push @args, "--release=$release_tag";
}
+ if ($nocumulate) {
+ push @args, "--nocumulate";
+ }
my $redirect = "";
if ($MAX_THREADS > 1 ) {
$redirect = "> /dev/null 2>&1";