From 49fad317a6885cc685c94b55f500553dc666c966 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Tue, 29 Mar 2005 11:02:26 +0000 Subject: INTEGRATION: CWS sdkbugfix02 (1.3.10); FILE MERGED 2005/03/03 15:44:15 jsc 1.3.10.1: #41142# special handling of make if mingw32 is used --- odk/cfgWin.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'odk/cfgWin.js') diff --git a/odk/cfgWin.js b/odk/cfgWin.js index 476171df85b8..b36f0ffe8445 100644 --- a/odk/cfgWin.js +++ b/odk/cfgWin.js @@ -209,6 +209,10 @@ function getMakeHome() //Check for the make executable var sMakePath = sHome + "\\make.exe"; if (! aFileSystemObject.FileExists(sMakePath)) + { + sMakePath = sHome + "\\mingw32-make.exe"; + } + if (! aFileSystemObject.FileExists(sMakePath)) { stdout.WriteLine("\n Error: Could not find \"" + sMakePath + "\". GNU make is required, please specify a GNU " + -- cgit