gecko-dev/tools/tinderbox/build-seamonkey.pl

35 lines
745 B
Perl
Raw Normal View History

#!/usr/bin/perl -w
1999-04-27 21:32:19 +00:00
require 5.005;
2000-03-16 22:34:56 +00:00
# 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::checkout_command = $::Version = undef;
1999-04-27 21:32:19 +00:00
2000-03-22 00:43:43 +00:00
$::Version = '$Revision: 1.93 $ ';
{
TinderUtils::Setup();
tree_specific_overides();
TinderUtils::Build();
}
1999-04-27 21:32:19 +00:00
# End of main
#======================================================================
1999-04-27 21:32:19 +00:00
1999-04-27 21:32:19 +00:00
sub tree_specific_overides {
$ENV{CVSROOT} = ":pserver:$ENV{USER}%netscape.com\@cvs.mozilla.org:/cvsroot";
$TreeSpecific::checkout_command = "aaaa";
}