diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2005-02-22 14:40:13 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2005-02-22 14:40:13 +0000 |
| commit | d039a2e193c9172e4f415b9304222e81804a69d0 (patch) | |
| tree | 4571d4da7950e9464e788a4d68dc5111167de52c /auto/install | |
| parent | 174db74f2309e28c0e2b54e89b9e08afff187c7c (diff) | |
| download | nginx-release-0.1.21.tar.gz nginx-release-0.1.21.tar.bz2 | |
nginx-0.1.21-RELEASE importrelease-0.1.21
*) Bugfix: the ngx_http_stub_status_module showed incorrect statistics
if "rtsig" method was used or if several worker process ran on SMP.
*) Bugfix: nginx could not be built by the icc compiler on Linux or if
the zlib-1.2.x library was building from sources.
*) Bugfix: nginx could not be built on NetBSD 2.0.
Diffstat (limited to 'auto/install')
| -rw-r--r-- | auto/install | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/auto/install b/auto/install index 7a26d040d..558f64626 100644 --- a/auto/install +++ b/auto/install @@ -4,38 +4,41 @@ cat << END >> $NGX_MAKEFILE -install: - test -d $NGX_PREFIX || mkdir -p $NGX_PREFIX +install: $NGX_OBJS${ngx_dirsep}nginx${ngx_binext} + test -d "$NGX_PREFIX" || mkdir -p "$NGX_PREFIX" - test -d `dirname $NGX_SBIN_PATH` || mkdir -p `dirname $NGX_SBIN_PATH` - test ! -f $NGX_SBIN_PATH || mv $NGX_SBIN_PATH $NGX_SBIN_PATH.old - cp $NGX_OBJS/nginx $NGX_SBIN_PATH + test -d "`dirname \"$NGX_SBIN_PATH\"`" \ + || mkdir -p "`dirname \"$NGX_SBIN_PATH\"`" + test ! -f "$NGX_SBIN_PATH" || mv "$NGX_SBIN_PATH" "$NGX_SBIN_PATH.old" + cp $NGX_OBJS/nginx "$NGX_SBIN_PATH" - test -d `dirname $NGX_CONF_PATH` || mkdir -p `dirname $NGX_CONF_PATH` + test -d "`dirname \"$NGX_CONF_PATH\"`" \ + || mkdir -p "`dirname \"$NGX_CONF_PATH\"`" - cp conf/koi-win `dirname $NGX_CONF_PATH` + cp conf/koi-win "`dirname \"$NGX_CONF_PATH\"`" - test -f `dirname $NGX_CONF_PATH`/mime.types || \ - cp conf/mime.types `dirname $NGX_CONF_PATH`/mime.types - cp conf/mime.types `dirname $NGX_CONF_PATH`/mime.types.default + test -f "`dirname \"$NGX_CONF_PATH\"`/mime.types" || \ + cp conf/mime.types "`dirname \"$NGX_CONF_PATH\"`/mime.types" + cp conf/mime.types "`dirname \"$NGX_CONF_PATH\"`/mime.types.default" - test -f $NGX_CONF_PATH || cp conf/nginx.conf $NGX_CONF_PATH - cp conf/nginx.conf `dirname $NGX_CONF_PATH`/nginx.conf.default + test -f "$NGX_CONF_PATH" || cp conf/nginx.conf "$NGX_CONF_PATH" + cp conf/nginx.conf "`dirname \"$NGX_CONF_PATH\"`/nginx.conf.default" - test -d `dirname $NGX_PID_PATH` || mkdir -p `dirname $NGX_PID_PATH` + test -d "`dirname \"$NGX_PID_PATH\"`" \ + || mkdir -p "`dirname \"$NGX_PID_PATH\"`" - test -d `dirname $NGX_HTTP_LOG_PATH` || \ - mkdir -p `dirname $NGX_HTTP_LOG_PATH` + test -d "`dirname \"$NGX_HTTP_LOG_PATH\"`" || \ + mkdir -p "`dirname \"$NGX_HTTP_LOG_PATH\"`" - test -d $NGX_PREFIX/html || cp -r html $NGX_PREFIX + test -d "$NGX_PREFIX/html" || cp -r html "$NGX_PREFIX" END if test -n "$NGX_ERROR_LOG_PATH"; then cat << END >> $NGX_MAKEFILE - test -d `dirname $NGX_ERROR_LOG_PATH` || \ - mkdir -p `dirname $NGX_ERROR_LOG_PATH` + test -d "`dirname \"$NGX_ERROR_LOG_PATH\"`" || \ + mkdir -p "`dirname \"$NGX_ERROR_LOG_PATH\"`" END fi |
