gecko-dev/tools/tinderbox/build-seamonkey.pl
cls%seawood.org df475ab2ce Add support for more informative tinderbox column names.
Move the automatic setting of CVSROOT so that it can be overridden by tinder-config.pl.
2000-05-04 07:30:45 +00:00

38 lines
908 B
Perl
Executable File

#!/usr/bin/perl -w
require 5.005;
# This script has split some functions off into a util
# script so they can be re-used by other scripts.
require "build-seamonkey-util.pl";
use strict;
# "use strict" complains if we do not define these.
# They are not initialized here. The default values are after "__END__".
$TreeSpecific::name = $TreeSpecific::checkout_target = $TreeSpecific::checkout_clobber_target = $::Version = undef;
$::Version = '$Revision: 1.95 $ ';
{
$ENV{CVSROOT} = ":pserver:$ENV{USER}%netscape.com\@cvs.mozilla.org:/cvsroot";
TinderUtils::Setup();
tree_specific_overides();
TinderUtils::Build();
}
# End of main
#======================================================================
sub tree_specific_overides {
$TreeSpecific::name = 'mozilla';
$TreeSpecific::checkout_target = '';
$TreeSpecific::checkout_clobber_target = "checkout realclean build";
}