[MLton-commit] r6804

Wesley Terpstra wesley at mlton.org
Mon Aug 25 07:57:43 PDT 2008


The script failed if in a directory with ()s, like Program Files (x86). This fixes it.
----------------------------------------------------------------------

U   mlton/trunk/package/mingw/mlton.bat

----------------------------------------------------------------------

Modified: mlton/trunk/package/mingw/mlton.bat
===================================================================
--- mlton/trunk/package/mingw/mlton.bat	2008-08-25 14:12:41 UTC (rev 6803)
+++ mlton/trunk/package/mingw/mlton.bat	2008-08-25 14:57:42 UTC (rev 6804)
@@ -13,18 +13,18 @@
 
 
 if not exist "%bin%" (
-  echo MLton directory %bin% does not exist
+  echo MLton directory "%bin%" does not exist
   goto :eof
 ) 
 
 if not exist "%lib%" (
-  echo MLton library directory %lib% does not exist
+  echo MLton library directory "%lib%" does not exist
   goto :eof
 )
 
 set cc=%bin%\gcc.exe
 if not exist "%cc%" (
-  echo GCC compiler %cc% does not exist
+  echo GCC compiler "%cc%" does not exist
   goto :eof
 )
 




More information about the MLton-commit mailing list