Removed an unneeded module usage, added MOZILLA_OFFICIAL, added the prefs file name param to RunBuild. FILES NOT PART OF BUILD.

This commit is contained in:
sfraser%netscape.com 2000-10-20 23:15:57 +00:00
Родитель 4865e7abfe
Коммит c6761ede0e
3 изменённых файлов: 14 добавлений и 9 удалений

Просмотреть файл

@ -24,10 +24,11 @@
#
# build script (optimized)
#
use Mac::Processes;
use MozillaBuildList;
use Cwd;
use Moz;
use MozillaBuildList;
#-------------------------------------------------------------
# Where have the build options gone?
@ -59,6 +60,7 @@ $CARBON = 0; # turn on to build with TARGET_CARBON
$PROFILE = 0;
$RUNTIME = 0; # turn on to just build runtime support and NSPR projects
$GC_LEAK_DETECTOR = 0; # turn on to use GC leak detection
$MOZILLA_OFFICIAL = 1; # generate build number
#-------------------------------------------------------------
# configuration variables that affect the manner of building,
@ -96,4 +98,4 @@ $MOZ_SRC = cwd();
my($do_checkout) = 0;
my($do_build) = 1;
RunBuild($do_checkout, $do_build);
RunBuild($do_checkout, $do_build, "Mozilla opt build prefs");

Просмотреть файл

@ -24,10 +24,11 @@
#
# build script (debug)
#
use Mac::Processes;
use MozillaBuildList;
use Cwd;
use Moz;
use MozillaBuildList;
#-------------------------------------------------------------
# Where have the build options gone?
@ -59,6 +60,7 @@ $CARBON = 0; # turn on to build with TARGET_CARBON
$PROFILE = 0;
$RUNTIME = 0; # turn on to just build runtime support and NSPR projects
$GC_LEAK_DETECTOR = 0; # turn on to use GC leak detection
$MOZILLA_OFFICIAL = 0; # generate build number
#-------------------------------------------------------------
# configuration variables that affect the manner of building,
@ -96,4 +98,4 @@ $MOZ_SRC = cwd();
my($do_checkout) = 0;
my($do_build) = 1;
RunBuild($do_checkout, $do_build);
RunBuild($do_checkout, $do_build, "Mozilla debug build prefs");

Просмотреть файл

@ -24,10 +24,11 @@
#
# nglayout pull script
#
use Mac::Processes;
use MozillaBuildList;
use Cwd;
use Moz;
use MozillaBuildList;
#-----------------------------------------------
# hashes to hold build options
@ -46,4 +47,4 @@ $MOZ_SRC = cwd();
my($do_checkout) = 1;
my($do_build) = 0;
RunBuild($do_checkout, $do_build);
RunBuild($do_checkout, $do_build, "");