aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--install.bat12
1 files changed, 6 insertions, 6 deletions
diff --git a/install.bat b/install.bat
index b92b9fd8..06d8348c 100644
--- a/install.bat
+++ b/install.bat
@@ -741,12 +741,12 @@ local find_gcc_suite = function()
741 end 741 end
742 end 742 end
743 743
744 vars.MINGW_MAKE = (result.make and '[['..result.make..']]') or "nil -- not found by installer" 744 vars.MINGW_MAKE = (result.make and '[['..result.make..']]') or "nil, -- not found by installer"
745 vars.MINGW_CC = (result.gcc and '[['..result.gcc..']]') or "nil -- not found by installer" 745 vars.MINGW_CC = (result.gcc and '[['..result.gcc..']]') or "nil, -- not found by installer"
746 vars.MINGW_RC = (result.windres and '[['..result.windres..']]') or "nil -- not found by installer" 746 vars.MINGW_RC = (result.windres and '[['..result.windres..']]') or "nil, -- not found by installer"
747 vars.MINGW_LD = (result.gcc and '[['..result.gcc..']]') or "nil -- not found by installer" 747 vars.MINGW_LD = (result.gcc and '[['..result.gcc..']]') or "nil, -- not found by installer"
748 vars.MINGW_AR = (result.ar and '[['..result.ar..']]') or "nil -- not found by installer" 748 vars.MINGW_AR = (result.ar and '[['..result.ar..']]') or "nil, -- not found by installer"
749 vars.MINGW_RANLIB = (result.ranlib and '[['..result.ranlib..']]') or "nil -- not found by installer" 749 vars.MINGW_RANLIB = (result.ranlib and '[['..result.ranlib..']]') or "nil, -- not found by installer"
750 return true 750 return true
751end 751end
752 752