Fix bug 134784

Not part of any build
Make command should always be "make" for building the module graph.
r=mcafee, sr=alecf
This commit is contained in:
blythe%netscape.com 2002-04-04 20:02:54 +00:00
parent b1ccccd70a
commit a048008f17

View File

@ -46,13 +46,7 @@ my %toplevel_modules; # visited components.
my $debug = 0;
my $makecommand;
if ($^O eq "linux") {
$makecommand = "make";
} elsif ($^O eq "MSWin32") {
$makecommand = "make";
}
my $makecommand = "make";
use Cwd;
my @dirs;