Note: for mac, MOZILLA_OFFICIAL is only set by default on opt builds until the new mac build scripts land. git-svn-id: svn://10.0.0.236/trunk@81519 18797224-902f-48f8-a5cc-f745e15eee43
13 lines
219 B
Perl
Executable File
13 lines
219 B
Perl
Executable File
|
|
use strict;
|
|
use mozBDate;
|
|
|
|
my $outfile = $ARGV[0];
|
|
my $build_num_file = $ARGV[1];
|
|
my $infile = "";
|
|
|
|
$infile = $ARGV[2] if ("$ARGV[2]" ne "");
|
|
|
|
&mozBDate::SubstituteBuildNumber($outfile, $build_num_file, $infile);
|
|
|