diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2011-10-10 22:52:00 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2011-10-10 22:52:00 -0300 |
commit | bffc55e6f74fd3fc1d74c79bf12443c249491248 (patch) | |
tree | a80f2434e61443ff3c23bdb858b672d3a645d8c3 | |
parent | 295c2940873e94c33e5f556284c7e9f3a1d296f5 (diff) | |
download | luarocks-bffc55e6f74fd3fc1d74c79bf12443c249491248.tar.gz luarocks-bffc55e6f74fd3fc1d74c79bf12443c249491248.tar.bz2 luarocks-bffc55e6f74fd3fc1d74c79bf12443c249491248.zip |
Fix behavior of --pack-binary-rock
(problem reported by Ignacio Burgueno)
-rw-r--r-- | src/luarocks/build.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/luarocks/build.lua b/src/luarocks/build.lua index af098f34..3c7f4405 100644 --- a/src/luarocks/build.lua +++ b/src/luarocks/build.lua | |||
@@ -3,6 +3,7 @@ | |||
3 | -- Builds a rock, compiling its C parts if any. | 3 | -- Builds a rock, compiling its C parts if any. |
4 | module("luarocks.build", package.seeall) | 4 | module("luarocks.build", package.seeall) |
5 | 5 | ||
6 | local pack = require("luarocks.pack") | ||
6 | local path = require("luarocks.path") | 7 | local path = require("luarocks.path") |
7 | local util = require("luarocks.util") | 8 | local util = require("luarocks.util") |
8 | local rep = require("luarocks.rep") | 9 | local rep = require("luarocks.rep") |