configure: help now displays hyphens for names lua-resty-[name] where name contains an underscore

pull/362/head
Marcus Clyne 7 years ago
parent 22db5319eb
commit 7cdd3da0ef

3
util/configure vendored

@ -1250,7 +1250,8 @@ _EOC_
$msg .= "\n" . (" " x $opt_max_len); $msg .= "\n" . (" " x $opt_max_len);
} }
$msg .= "disable the lua-resty-${name} library\n"; (my $name2 = $name) =~ s/_/-/g;
$msg .= "disable the lua-resty-${name2} library\n";
} }
$msg .= <<'_EOC_'; $msg .= <<'_EOC_';

Loading…
Cancel
Save