1
0
mirror of https://github.com/openresty/openresty.git synced 2024-10-13 00:29:41 +00:00

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

This commit is contained in:
agentzh (章亦春)
2011-11-11 14:14:25 +08:00
parent 26d1d6a05e
commit d33c4824f6
2 changed files with 250 additions and 248 deletions

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")) {