other half of clobber before release build cycle

This commit is contained in:
cltbld 2004-09-23 19:39:03 +00:00
parent 62254d55ba
commit dce4e38972

View File

@ -24,7 +24,7 @@ use Config; # for $Config{sig_name} and $Config{sig_num}
use File::Find ();
use File::Copy;
$::UtilsVersion = '$Revision: 1.270 $ ';
$::UtilsVersion = '$Revision: 1.271 $ ';
package TinderUtils;
@ -889,6 +889,11 @@ sub BuildIt {
my $build_status = 'none';
my $binary_url = '';
my $external_build = "$Settings::BaseDir/post-mozilla.pl";
if (-e $external_build) {
PostMozilla::PreBuild();
}
# Allow skipping of mozilla phase.
unless ($Settings::SkipMozilla) {
@ -1022,7 +1027,6 @@ sub BuildIt {
#
# Run (optional) external, post-mozilla build here.
#
my $external_build = "$Settings::BaseDir/post-mozilla.pl";
if (((-e $external_build) and ($build_status eq 'success')) ||
($Settings::SkipMozilla)) {
($build_status, $binary_url) = PostMozilla::main($build_dir);