From 516329326074eac6e4c2e5701f63c41b1afa0965 Mon Sep 17 00:00:00 2001 From: "Yichun Zhang (agentzh)" Date: Wed, 2 Nov 2016 15:19:06 -0700 Subject: [PATCH] make install: now we also create directories /site/pod/ and /site/manifest/. --- util/configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/util/configure b/util/configure index 8153399..45d786a 100755 --- a/util/configure +++ b/util/configure @@ -341,7 +341,10 @@ 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"; +push @make_install_cmds, + "mkdir -p \$(DESTDIR)$prefix/site/lualib" + . " \$(DESTDIR)$prefix/site/pod" + . " \$(DESTDIR)$prefix/site/manifest"; if ($platform ne 'msys') { push @make_install_cmds, "ln -sf $ngx_prefix/sbin/nginx \$(DESTDIR)$prefix/bin/openresty";