2000-02-26 03:37:54 +03:00
|
|
|
#!/usr/bin/perl -w
|
1999-04-28 01:32:19 +04:00
|
|
|
|
2000-07-30 23:54:16 +04:00
|
|
|
require 5.003;
|
2000-03-17 01:34:56 +03:00
|
|
|
|
2000-02-07 05:34:30 +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";
|
|
|
|
|
2000-02-26 00:40:56 +03:00
|
|
|
use strict;
|
2000-03-16 04:43:53 +03:00
|
|
|
|
2000-03-17 01:31:48 +03:00
|
|
|
# "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
|
|
|
|
2001-08-14 10:36:41 +04:00
|
|
|
{
|
2000-03-22 03:18:06 +03:00
|
|
|
TinderUtils::Setup();
|
|
|
|
tree_specific_overides();
|
|
|
|
TinderUtils::Build();
|
2000-02-26 03:08:03 +03:00
|
|
|
}
|
1999-04-28 01:32:19 +04:00
|
|
|
|
1999-08-21 03:52:18 +04:00
|
|
|
# End of main
|
2000-02-26 00:40:56 +03:00
|
|
|
#======================================================================
|
1999-04-28 01:32:19 +04:00
|
|
|
|
2000-02-26 00:40:56 +03:00
|
|
|
|
1999-04-28 01:32:19 +04:00
|
|
|
|
2000-03-22 03:18:06 +03:00
|
|
|
sub tree_specific_overides {
|
2000-02-29 21:08:12 +03:00
|
|
|
|
2000-03-23 09:05:10 +03:00
|
|
|
$TreeSpecific::name = 'mozilla';
|
2003-01-17 22:27:14 +03:00
|
|
|
$TreeSpecific::checkout_target = '';
|
|
|
|
$TreeSpecific::checkout_clobber_target = "checkout realclean build";
|
2000-03-23 09:05:10 +03:00
|
|
|
|
2000-02-29 21:08:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|