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

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

#!/usr/bin/perl -w
1999-04-28 01:32:19 +04:00
require 5.003;
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__".
2003-01-17 22:27:14 +03:00
$TreeSpecific::name = $TreeSpecific::checkout_target = $TreeSpecific::checkout_clobber_target = $::Version = undef;
1999-04-28 01:32:19 +04:00
2003-01-17 22:27:14 +03:00
$::Version = '$Revision: 1.100 $ ';
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 {
$TreeSpecific::name = 'mozilla';
2003-01-17 22:27:14 +03:00
$TreeSpecific::checkout_target = '';
$TreeSpecific::checkout_clobber_target = "checkout realclean build";
}