2000-02-26 03:37:54 +03:00
|
|
|
#!/usr/bin/perl -w
|
1999-04-28 01:32:19 +04:00
|
|
|
|
2000-03-17 01:31:48 +03:00
|
|
|
require 5.005;
|
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-22 03:18:06 +03:00
|
|
|
$::Version = '$Revision: 1.92 $ ';
|
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__".
|
2000-03-22 03:18:06 +03:00
|
|
|
$TreeSpecific::checkout_command = $::Version = undef;
|
1999-04-28 01:32:19 +04:00
|
|
|
|
2000-02-26 03:08:03 +03: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-26 00:40:56 +03:00
|
|
|
$ENV{CVSROOT} = ":pserver:$ENV{USER}%netscape.com\@cvs.mozilla.org:/cvsroot";
|
2000-02-29 21:08:12 +03:00
|
|
|
|
2000-03-22 03:18:06 +03:00
|
|
|
$TreeSpecific::checkout_command = "aaaa";
|
2000-02-29 21:08:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|