summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInEdited <ineditedofficial@gmail.com>2020-01-14 11:07:23 +0200
committerHisham Muhammad <hisham@gobolinux.org>2020-01-14 16:19:58 -0300
commit525c41f2024422808a72ca832f41ab1c6e32b6b3 (patch)
treee6033628c2a2a04f4057a0b4262d3dd815937d5b
parent4aa2098be12fe8093bff230c6368b608dbdef13b (diff)
downloadluarocks-525c41f2024422808a72ca832f41ab1c6e32b6b3.tar.gz
luarocks-525c41f2024422808a72ca832f41ab1c6e32b6b3.tar.bz2
luarocks-525c41f2024422808a72ca832f41ab1c6e32b6b3.zip
win32: config-5.1.lua refactoring ubild
-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