view auto/install @ 44:4989c3d25945 NGINX_0_1_22

nginx 0.1.22 *) Bugfix: the ngx_http_stub_status_module showed incorrect handled connections statistics if the proxying or FastCGI server were used. *) Bugfix: the installation paths were incorrectly quoted on Linux and Solaris; bug appeared in 0.1.21.
author Igor Sysoev <http://sysoev.ru>
date Tue, 22 Feb 2005 00:00:00 +0300
parents 41ccba1aba45
children ea622d8acb38
line wrap: on
line source


# Copyright (C) Igor Sysoev


cat << END                                                    >> $NGX_MAKEFILE

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_CONF_PATH"`' \
		|| mkdir -p '`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 '$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_HTTP_LOG_PATH"`' || \
		mkdir -p '`dirname "$NGX_HTTP_LOG_PATH"`'

	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"`'
END

fi