diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-25 23:03:42 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-25 23:03:42 +0000 |
commit | 9ff2b7ce3bedcc6f18576e161cf15877d47913bb (patch) | |
tree | 1c66facae4d0e0c13283a383d6253cd8e4e47bde | |
parent | 05fca95402bb31453f8b93cf3c6f4994e9d29918 (diff) |
pretty
-rw-r--r-- | usr.sbin/httpd/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/httpd/Makefile b/usr.sbin/httpd/Makefile index edeff36f771..e8d846f0915 100644 --- a/usr.sbin/httpd/Makefile +++ b/usr.sbin/httpd/Makefile @@ -83,31 +83,31 @@ distribution: j=`dirname $$i`; \ echo "Installing ${DESTDIR}${WWWROOT}/$$i"; \ ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ - ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ + ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ done @-for i in ${HTDOCS}; do \ j=`dirname $$i`; \ echo "Installing ${DESTDIR}${WWWROOT}/$$i"; \ ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ - ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ + ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ done @-for i in ${MANUALFILES}; do \ j=`dirname $$i`; \ echo "Installing ${DESTDIR}${WWWROOT}/$$i"; \ ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ - ${.CURDIR}/htdocs/$$i ${DESTDIR}${WWWROOT}/htdocs/$$j/; \ + ${.CURDIR}/htdocs/$$i ${DESTDIR}${WWWROOT}/htdocs/$$j/; \ done @-for i in ${CGIFILES}; do \ j=`dirname $$i`; \ echo "Installing ${DESTDIR}${WWWROOT}/$$i"; \ ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 000 \ - ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ + ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ done @-for i in ${ICONFILES}; do \ j=`dirname $$i`; \ echo "Installing ${DESTDIR}${WWWROOT}/$$i"; \ ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 444 \ - ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ + ${.CURDIR}/$$i ${DESTDIR}${WWWROOT}/$$j/; \ done .include<bsd.subdir.mk> |