summaryrefslogtreecommitdiffstats
path: root/odk/cfgWin.js
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-03-29 11:02:26 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-03-29 11:02:26 +0000
commit49fad317a6885cc685c94b55f500553dc666c966 (patch)
tree13fae089783c31b65c9d59d3f0dab02d5219d775 /odk/cfgWin.js
parentINTEGRATION: CWS adc11 (1.2.100); FILE MERGED (diff)
downloadcore-49fad317a6885cc685c94b55f500553dc666c966.tar.gz
core-49fad317a6885cc685c94b55f500553dc666c966.zip
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
Diffstat (limited to 'odk/cfgWin.js')
-rw-r--r--odk/cfgWin.js4
1 files changed, 4 insertions, 0 deletions
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 " +