Mozilla/mozilla/tools/tinderbox/build-seamonkey.pl
dbaron%dbaron.org d56cdd6682 Quiet warning by defining extrafiles to empty string.
git-svn-id: svn://10.0.0.236/trunk@167238 18797224-902f-48f8-a5cc-f745e15eee43
2005-01-04 03:41:19 +00:00

39 lines
920 B
Perl
Executable File

#!/usr/bin/perl -w
require 5.003;
# 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::build_target = $TreeSpecific::checkout_target = $TreeSpecific::clobber_target = $::Version = undef;
$::Version = '$Revision: 1.103 $ ';
{
TinderUtils::Setup();
tree_specific_overides();
TinderUtils::Build();
}
# End of main
#======================================================================
sub tree_specific_overides {
$TreeSpecific::name = 'mozilla';
$TreeSpecific::build_target = 'build_all_depend';
$TreeSpecific::checkout_target = 'checkout';
$TreeSpecific::clobber_target = 'distclean';
$TreeSpecific::extrafiles = '';
}