nginx-0.1.0-2004-09-29-20:00:49 import; remove years from copyright
diff --git a/auto/install b/auto/install
index 1ecf5a7..d1d608c 100644
--- a/auto/install
+++ b/auto/install
@@ -1,4 +1,7 @@
 
+# Copyright (C) Igor Sysoev
+
+
 cat << END                                                        >> $MAKEFILE
 install:
 	test -d $PREFIX || mkdir -p $PREFIX
@@ -18,7 +21,7 @@
 	cp conf/nginx.conf `dirname $CONF_PATH`/nginx.conf.default
 
 	test -d `dirname $PID_PATH` || mkdir -p `dirname $PID_PATH`
-	test -d `dirname $ERROR_LOG_PATH` || mkdir -p `dirname $ERROR_LOG_PATH`
+
 	test -d `dirname $HTTP_LOG_PATH` || mkdir -p `dirname $HTTP_LOG_PATH`
 
 	test -d $PREFIX/html || cp -r html $PREFIX
@@ -27,6 +30,15 @@
 END
 
 
+if [ ".$ERROR_LOG_PATH" != "." ]; then
+    cat << END                                                    >> $MAKEFILE
+
+	test -d `dirname $ERROR_LOG_PATH` || mkdir -p `dirname $ERROR_LOG_PATH`
+END
+
+fi
+
+
 if test ! -f Makefile; then
 
     cat << END > Makefile