Skip to content

Commit

Permalink
Fix LUA_LIBRARY
Browse files Browse the repository at this point in the history
ROCKS_TREE may be:
* custom (--tree=$PROJECT/lua_modules):  `ROCKS_TREE = "$PROJECT/lua_modules/lib/luarocks/rocks"`
* local: `ROCKS_TREE = "$HOME/.luarocks/lib/luarocks/rocks"`
* global: `ROCKS_TREE = "/usr/local/lib/luarocks/rocks`
  • Loading branch information
bzick authored Aug 19, 2019
1 parent 3804160 commit 3606e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rockspec/lua-cbson-git-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ build = {
variables = {
LUA_INCLUDE_DIR = "$(LUA_INCDIR)",
LUA_LIBRARIES = "$(LUA_LIBDIR)",
LUA_LIBRARY = "$(LUA_LIBDIR)/lua",
LUA_LIBRARY = "$(ROCKS_TREE)/..",
}
}

0 comments on commit 3606e4b

Please sign in to comment.