bugfix: forgot to create the directory <openresty-prefix>/site/lualib/.

This commit is contained in:
Yichun Zhang (agentzh) 2016-07-14 18:30:07 -07:00
parent 697bb0a08c
commit 961eb11536
1 changed files with 2 additions and 0 deletions

2
util/configure vendored
View File

@ -341,6 +341,8 @@ push @make_cmds, "cd $root_dir/build/$ngx_dir && "
push @make_install_cmds, "cd $root_dir/build/$ngx_dir && "
. "\$(MAKE) install DESTDIR=\$(DESTDIR)";
push @make_install_cmds, "mkdir -p \$(DESTDIR)$prefix/site/lualib";
if ($platform ne 'msys') {
push @make_install_cmds, "ln -sf $ngx_prefix/sbin/nginx \$(DESTDIR)$prefix/bin/openresty";
}