summaryrefslogtreecommitdiff
path: root/solenv/bin/modules/packager
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-05-08 11:41:44 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-05-08 11:41:44 +0000
commit8cde562f0a097100f8c8301e79fb9abd4a8113c6 (patch)
tree8a667d5017b8904a58763bb95b7376cb2631a5ce /solenv/bin/modules/packager
parent6da0ca661f23a73e10a78c47fd9046dd49e7498a (diff)
'cleanup' target for packing in buildserver removed.
Diffstat (limited to 'solenv/bin/modules/packager')
-rw-r--r--solenv/bin/modules/packager/work.pm27
1 files changed, 2 insertions, 25 deletions
diff --git a/solenv/bin/modules/packager/work.pm b/solenv/bin/modules/packager/work.pm
index 97ef2f0c45b9..e1fb212daf04 100644
--- a/solenv/bin/modules/packager/work.pm
+++ b/solenv/bin/modules/packager/work.pm
@@ -4,9 +4,9 @@
#
# $RCSfile: work.pm,v $
#
-# $Revision: 1.9 $
+# $Revision: 1.10 $
#
-# last change: $Author: obo $ $Date: 2006-01-20 14:20:07 $
+# last change: $Author: rt $ $Date: 2006-05-08 12:41:44 $
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
@@ -220,29 +220,6 @@ sub start_build_server
do_broadcast($tempdir, $prjname, $prj, $platform, $prjdep);
push @targetdirs, $tempdir;
}
- sleep 5;
- @targetlines = ();
- if ( defined $ENV{USE_SHELL} && $ENV{USE_SHELL} eq "4nt" ) {
- push( @targetlines, "RMRECURSIVEFLAGS=/sxyz\n" );
- } else {
- push( @targetlines, "RMRECURSIVEFLAGS=-rf\n" );
- }
- push( @targetlines, "\ngenerated_target :\n"); # to be included into the makefile.mk
- my @depdirs = @targetdirs;
- foreach my $i (@targetdirs) {
- $i =~ s/.*?([\w-]+)$/\.\.\$\/$1/;
- push( @targetlines, "\t+\$(RM) \$(RMRECURSIVEFLAGS) $i\n"); # to be included into the makefile.mk
- }
- push( @targetlines, "\n" );
- $target = "cleanup";
- $tempdir = $miscpath . $packager::globals::separator . $target;
- $tempdir = packager::files::create_unique_directory ($tempdir);
- generate_makefile($tempdir, $makefilepath, $prjroot, $target, \@targetlines);
- $prjdep = join ";", @depdirs;
- $prjdep =~ s/\$\//\\/g;
- $prjdep =~ s/\//\\/g;
- $prjdep =~ s/\.\.[\.\\]+/$prjname\\/g;
- do_broadcast($tempdir, $prjname, $prj, $platform, $prjdep);
}
##############################################################