aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2012-09-25 15:37:53 -0300
committerHisham Muhammad <hisham@gobolinux.org>2012-09-25 15:37:53 -0300
commitf30fa41c2a01568eb87b0469f1a2871b7c9e9b68 (patch)
treeafd68c7240d33132fb6bc9e651b14c0c33db0e78
parentec1ccfc94011529deee5a03f227154d222287735 (diff)
downloadluarocks-f30fa41c2a01568eb87b0469f1a2871b7c9e9b68.tar.gz
luarocks-f30fa41c2a01568eb87b0469f1a2871b7c9e9b68.tar.bz2
luarocks-f30fa41c2a01568eb87b0469f1a2871b7c9e9b68.zip
Fix missing declaration to be used on Mac OSX systems, related to #94.
-rw-r--r--src/luarocks/cfg.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/luarocks/cfg.lua b/src/luarocks/cfg.lua
index 9c42361f..39bdbd70 100644
--- a/src/luarocks/cfg.lua
+++ b/src/luarocks/cfg.lua
@@ -10,8 +10,8 @@
10-- (~/.luarocks/config.lua on Unix or %APPDATA%/luarocks/config.lua on 10-- (~/.luarocks/config.lua on Unix or %APPDATA%/luarocks/config.lua on
11-- Windows). 11-- Windows).
12 12
13local rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, type, assert, _VERSION = 13local rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, tonumber, type, assert, _VERSION =
14 rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, type, assert, _VERSION 14 rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, tonumber, type, assert, _VERSION
15 15
16module("luarocks.cfg") 16module("luarocks.cfg")
17 17