diff options
author | Kim Alvefur <zash@zash.se> | 2017-01-09 10:17:39 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-01-09 10:17:39 +0100 |
commit | fde889b4ececec3509342955533058672df4a2c3 (patch) | |
tree | f74647d6ef7f599b9f5283ae25b85c10ac124a2e /util/dependencies.lua | |
parent | 3c6c798435a4197ea3d07db09ee5df58a1216b26 (diff) | |
parent | d3f66c0848559e7f019aa50617052a0030f2df65 (diff) | |
download | prosody-fde889b4ececec3509342955533058672df4a2c3.tar.gz prosody-fde889b4ececec3509342955533058672df4a2c3.zip |
Merge 0.10->trunk
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r-- | util/dependencies.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua index 11cd9486..f213a5da 100644 --- a/util/dependencies.lua +++ b/util/dependencies.lua @@ -61,7 +61,7 @@ local function check_dependencies() if not lxp then missingdep("luaexpat", { - ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-expat0"; + ["Debian/Ubuntu"] = "sudo apt-get install lua-expat"; ["luarocks"] = "luarocks install luaexpat"; ["Source"] = "http://matthewwild.co.uk/projects/luaexpat/"; }); @@ -72,7 +72,7 @@ local function check_dependencies() if not socket then missingdep("luasocket", { - ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-socket2"; + ["Debian/Ubuntu"] = "sudo apt-get install lua-socket"; ["luarocks"] = "luarocks install luasocket"; ["Source"] = "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/"; }); @@ -83,7 +83,7 @@ local function check_dependencies() if not lfs then missingdep("luafilesystem", { ["luarocks"] = "luarocks install luafilesystem"; - ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-filesystem0"; + ["Debian/Ubuntu"] = "sudo apt-get install lua-filesystem"; ["Source"] = "http://www.keplerproject.org/luafilesystem/"; }); fatal = true; |