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 | c3d9a2c11d362fcd1677d169af395c1f7bb8d4f1 (patch) | |
tree | f74647d6ef7f599b9f5283ae25b85c10ac124a2e /util | |
parent | ea5d14cb81bd618da08e46fc4a314379d8df46ca (diff) | |
parent | 9aed5f791f903dd1d5bd997fcb15bcece4c8e9e4 (diff) | |
download | prosody-c3d9a2c11d362fcd1677d169af395c1f7bb8d4f1.tar.gz prosody-c3d9a2c11d362fcd1677d169af395c1f7bb8d4f1.zip |
Merge 0.10->trunk
Diffstat (limited to 'util')
-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; |