diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-11-18 07:32:51 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-11-18 07:32:51 +0000 |
commit | 9c5dcbd8f3b081643e1b03b0c6ffa24c53e645d2 (patch) | |
tree | 770e54444ebd36e232831c32e435a86f6f507602 /solenv | |
parent | bd720ca7ca22aa60cbb6b5a4076dbc685679158f (diff) |
INTEGRATION: CWS nativefixer1 (1.2.100); FILE MERGED
2004/11/02 11:40:02 is 1.2.100.2: #118240# parameter -i to ignore errors
2004/10/26 10:41:28 is 1.2.100.1: #118240# parallel packing process
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/packager.pl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/solenv/bin/packager.pl b/solenv/bin/packager.pl index c9b10f59e096..e8e2a10f3ac5 100644 --- a/solenv/bin/packager.pl +++ b/solenv/bin/packager.pl @@ -2,9 +2,9 @@ # # $RCSfile: packager.pl,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: kz $ $Date: 2004-06-11 18:14:09 $ +# last change: $Author: obo $ $Date: 2004-11-18 08:32:51 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -74,14 +74,16 @@ use packager::work; packager::check::check_environment(); packager::check::check_packlist(); +packager::check::check_parameter(); packager::work::set_global_variable(); my $packagelist = packager::files::read_file($packager::globals::packlistname); -my $calls = packager::work::create_package_todos($packagelist); +my $targets = packager::work::create_package_todos($packagelist); -packager::work::execute_system_calls($calls); +if ( $ENV{'BSCLIENT'} ) { packager::work::start_build_server($targets); } +else { packager::work::execute_system_calls($targets); } if ( $packager::globals::logging ) { |