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

38 строки
908 B
Perl
Исходник Обычный вид История

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