diff options
-rw-r--r-- | src/luarocks/build/builtin.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/build/builtin.lua b/src/luarocks/build/builtin.lua index 3bace7c4..427ab7c9 100644 --- a/src/luarocks/build/builtin.lua +++ b/src/luarocks/build/builtin.lua | |||
@@ -234,7 +234,7 @@ function run(rockspec) | |||
234 | local ok, err = fs.make_dir(moddir) | 234 | local ok, err = fs.make_dir(moddir) |
235 | if not ok then return nil, err end | 235 | if not ok then return nil, err end |
236 | end | 236 | end |
237 | built_modules[module_name] = dir.path(libdir, moddir, module_name) | 237 | built_modules[module_name] = dir.path(libdir, module_name) |
238 | ok = compile_library(module_name, objects, info.libraries, info.libdirs, name) | 238 | ok = compile_library(module_name, objects, info.libraries, info.libdirs, name) |
239 | if not ok then | 239 | if not ok then |
240 | return nil, "Failed compiling module "..module_name | 240 | return nil, "Failed compiling module "..module_name |