diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-12-02 22:13:31 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-12-02 22:13:31 +0000 |
commit | 6428065b5edf506fba8305186f95fff8d100a5e6 (patch) | |
tree | f39882f1ef62507ee1d4024da771e1d9a3801a8e | |
parent | beb6fa2f210bbf8ea8d976f11728d20c5b41ad42 (diff) | |
download | prosody-6428065b5edf506fba8305186f95fff8d100a5e6.tar.gz prosody-6428065b5edf506fba8305186f95fff8d100a5e6.zip |
util.dependencies: Fix package name of LuaFilesystem
-rw-r--r-- | util/dependencies.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua index 790045eb..a0535e5c 100644 --- a/util/dependencies.lua +++ b/util/dependencies.lua @@ -53,7 +53,7 @@ local lfs, err = softreq "lfs" if not lfs then missingdep("luafilesystem", { ["luarocks"] = "luarocks install luafilesystem"; - ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-luafilesystem0"; + ["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-filesystem0"; ["Source"] = "http://www.keplerproject.org/luafilesystem/"; }); fatal = true; |