mirror of
https://github.com/openresty/openresty.git
synced 2024-10-13 00:29:41 +00:00
now we require gmake for *BSD systems even if luajit is not enabled. thanks @lhmwzy.
This commit is contained in:
4
util/configure
vendored
4
util/configure
vendored
@ -312,8 +312,8 @@ sub build_resty_opts {
|
||||
} else {
|
||||
# no gmake found
|
||||
|
||||
if ($platform =~ /bsd/i && $opts->{luajit}) {
|
||||
die "you need to install gmake to build LuaJIT.\n";
|
||||
if ($platform =~ /bsd/i) {
|
||||
die "error: you need to install gmake (Gnu make) to build LuaJIT.\n";
|
||||
}
|
||||
|
||||
if (can_run("make")) {
|
||||
|
Reference in New Issue
Block a user