diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-07-14 09:41:18 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-07-14 09:41:18 +0000 |
commit | e9b01c0aa6104e1f3bcc057650708bf17b1610a8 (patch) | |
tree | efbfc48fa547944ec7a360023819ad40c17d2c92 | |
parent | 2642bf1a6df887b4ab05496fbf0f6028036fb750 (diff) | |
download | nginx-e9b01c0aa6104e1f3bcc057650708bf17b1610a8.tar.gz nginx-e9b01c0aa6104e1f3bcc057650708bf17b1610a8.zip |
name of file specified in --conf-path was not honored during installation
the bug had been appeared in r1353
-rw-r--r-- | auto/install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto/install b/auto/install index c17dac612..f876891f8 100644 --- a/auto/install +++ b/auto/install @@ -102,7 +102,7 @@ install: $NGX_OBJS${ngx_dirsep}nginx${ngx_binext} \ '\$(DESTDIR)$NGX_CONF_PREFIX/fastcgi_params.default' test -f '\$(DESTDIR)$NGX_CONF_PATH' \ - || cp conf/nginx.conf '\$(DESTDIR)$NGX_CONF_PREFIX' + || cp conf/nginx.conf '\$(DESTDIR)$NGX_CONF_PATH' cp conf/nginx.conf '\$(DESTDIR)$NGX_CONF_PREFIX/nginx.conf.default' test -d '\$(DESTDIR)`dirname "$NGX_PID_PATH"`' \ |