Fix bug 134784

Not part of any build
Make command should always be "make" for building the module graph.
r=mcafee, sr=alecf


git-svn-id: svn://10.0.0.236/trunk@118137 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blythe%netscape.com 2002-04-04 20:02:54 +00:00
parent dbcf2c42b3
commit b77d298eb4

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;