diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | src/luarocks/loader.lua | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -143,7 +143,7 @@ install_bins: built | |||
143 | cd src/bin && for f in $(BIN_FILES); \ | 143 | cd src/bin && for f in $(BIN_FILES); \ |
144 | do \ | 144 | do \ |
145 | cp "$$f" "$(DESTDIR)$(BINDIR)/$$f-$(LUA_VERSION)"; \ | 145 | cp "$$f" "$(DESTDIR)$(BINDIR)/$$f-$(LUA_VERSION)"; \ |
146 | ln -nfs "$(DESTDIR)$(BINDIR)/$$f-$(LUA_VERSION)" "$(DESTDIR)$(BINDIR)/$$f"; \ | 146 | ln -nfs "$$f-$(LUA_VERSION)" "$(DESTDIR)$(BINDIR)/$$f"; \ |
147 | done | 147 | done |
148 | 148 | ||
149 | install_luas: built | 149 | install_luas: built |
diff --git a/src/luarocks/loader.lua b/src/luarocks/loader.lua index a116766c..aa3b2781 100644 --- a/src/luarocks/loader.lua +++ b/src/luarocks/loader.lua | |||
@@ -108,7 +108,7 @@ end | |||
108 | -- @return table or (nil, string): The module table as returned by some other loader, | 108 | -- @return table or (nil, string): The module table as returned by some other loader, |
109 | -- or nil followed by an error message if no other loader managed to load the module. | 109 | -- or nil followed by an error message if no other loader managed to load the module. |
110 | local function call_other_loaders(module, name, version, module_name) | 110 | local function call_other_loaders(module, name, version, module_name) |
111 | for i, loader in pairs(package.loaders) do | 111 | for i, loader in ipairs(package.loaders) do |
112 | if loader ~= luarocks_loader then | 112 | if loader ~= luarocks_loader then |
113 | local results = { loader(module_name) } | 113 | local results = { loader(module_name) } |
114 | if type(results[1]) == "function" then | 114 | if type(results[1]) == "function" then |