improved the missing gmake on BSD error message as per @lhmwzy.

pull/4/head
agentzh (章亦春) 13 years ago
parent 26d1d6a05e
commit d33c4824f6

File diff suppressed because it is too large Load Diff

4
util/configure vendored

@ -313,7 +313,9 @@ sub build_resty_opts {
# no gmake found
if ($platform =~ /bsd/i) {
die "error: you need to install gmake (Gnu make) to build LuaJIT.\n";
die "error: I cannot find \"gmake\" (Gnu make) in your PATH ".
"envirnonment. You can also specify your make by the ".
"--with-make=PATH option\n";
}
if (can_run("make")) {

Loading…
Cancel
Save