Mozilla/mozilla/tools/tinderbox/build-seamonkey.pl
mcafee%netscape.com a6ebce76c8 Pass mozilla_dir to post-mozilla build. properly pull and build galeon source.
git-svn-id: svn://10.0.0.236/trunk@101006 18797224-902f-48f8-a5cc-f745e15eee43
2001-08-14 06:36:41 +00:00

37 lines
830 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::checkout_target = $TreeSpecific::checkout_clobber_target = $::Version = undef;
$::Version = '$Revision: 1.97 $ ';
{
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";
}