util.dependencies: Normalize whitespace

This commit is contained in:
Kim Alvefur 2017-01-28 21:43:38 +01:00
parent b661ee3aca
commit 87f325ecd7

View file

@ -112,7 +112,8 @@ local function check_dependencies()
local encodings, err = softreq "util.encodings"
if not encodings then
if err:match("module '[^']*' not found") then
missingdep("util.encodings", { ["Windows"] = "Make sure you have encodings.dll from the Prosody distribution in util/";
missingdep("util.encodings", {
["Windows"] = "Make sure you have encodings.dll from the Prosody distribution in util/";
["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/encodings.so";
});
else
@ -129,7 +130,8 @@ local function check_dependencies()
local hashes, err = softreq "util.hashes"
if not hashes then
if err:match("module '[^']*' not found") then
missingdep("util.hashes", { ["Windows"] = "Make sure you have hashes.dll from the Prosody distribution in util/";
missingdep("util.hashes", {
["Windows"] = "Make sure you have hashes.dll from the Prosody distribution in util/";
["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/hashes.so";
});
else