From 251d87362d54121effcd4e2ebca5ab6dc862dbac Mon Sep 17 00:00:00 2001 From: "mcmullen%netscape.com" Date: Sat, 12 Jun 1999 01:25:21 +0000 Subject: [PATCH] Moved the idl flag down to match the build order (both occurrences). git-svn-id: svn://10.0.0.236/trunk@34953 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/build/mac/BuildNGLayoutDebug.pl | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/mozilla/build/mac/BuildNGLayoutDebug.pl b/mozilla/build/mac/BuildNGLayoutDebug.pl index 47417b34512..e656d197172 100644 --- a/mozilla/build/mac/BuildNGLayoutDebug.pl +++ b/mozilla/build/mac/BuildNGLayoutDebug.pl @@ -42,11 +42,11 @@ $pull{nglayout} = 0; $pull{mac} = 0; $build{all} = 1; # turn off to do individual builds, or to do "most" -$build{most} = 0; # turn off to do individual builds +$build{most} = 1; # turn off to do individual builds $build{dist} = 0; $build{dist_runtime} = 0; # implied by $build{dist} -$build{idl} = 0; $build{resources} = 0; +$build{idl} = 0; $build{stubs} = 0; $build{runtime} = 0; $build{common} = 0; @@ -102,16 +102,16 @@ if ($build{most}) ### Just uncomment/comment to get the ones you want (if "most" is selected). # $build{dist} = 1; # $build{dist_runtime}= 1; -# $build{idl} = 1; # $build{resources} = 1; -# $build{stubs} = 1; -# $build{runtime} = 1; -# $build{common} = 1; # Requires intl -# $build{intl} = 1; -# $build{nglayout} = 1; -# $build{editor} = 1; -# $build{mailnews} = 1; -# $build{viewer} = 1; + $build{idl} = 1; + $build{stubs} = 1; + $build{runtime} = 1; + $build{common} = 1; # Requires intl + $build{intl} = 1; + $build{nglayout} = 1; + $build{editor} = 1; + $build{mailnews} = 1; + $build{viewer} = 1; $build{xpapp} = 1; }