From b77d298eb418ffd46e9eca66059ab0243f1d2a3d Mon Sep 17 00:00:00 2001 From: "blythe%netscape.com" Date: Thu, 4 Apr 2002 20:02:54 +0000 Subject: [PATCH] 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 --- mozilla/tools/module-deps/module-graph.pl | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/mozilla/tools/module-deps/module-graph.pl b/mozilla/tools/module-deps/module-graph.pl index 65294ec1edb..41db1c4d6bb 100755 --- a/mozilla/tools/module-deps/module-graph.pl +++ b/mozilla/tools/module-deps/module-graph.pl @@ -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;