diff options
author | des <des@FreeBSD.org> | 2004-01-25 19:11:43 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2004-01-25 19:11:43 +0000 |
commit | 1166334a41aad701159fad8e762aec6fc56e0550 (patch) | |
tree | 70957e2e88153677d62e583e4701ad9258e5e223 /tools | |
parent | 58663a2dba3d30ead50760c6163002c2c65c6020 (diff) | |
download | FreeBSD-src-1166334a41aad701159fad8e762aec6fc56e0550.zip FreeBSD-src-1166334a41aad701159fad8e762aec6fc56e0550.tar.gz |
Fix the case where .OBJDIR != .CURDIR.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tinderbox/www/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/tools/tinderbox/www/Makefile b/tools/tools/tinderbox/www/Makefile index b153655..acb4c87 100644 --- a/tools/tools/tinderbox/www/Makefile +++ b/tools/tools/tinderbox/www/Makefile @@ -12,8 +12,11 @@ all: ${IMAGES} realinstall: ${INSTALL} -m0755 -o${WWWOWN} -g${WWWGRP} ${.CURDIR}/${CGI} ${WWWDIR} -.for FILE in ${DATA} ${IMAGES} - ${INSTALL} -m0644 -o${WWWOWN} -g${WWWGRP} ${.CURDIR}/${FILE} ${WWWDIR} +.for _data in ${DATA} + ${INSTALL} -m0644 -o${WWWOWN} -g${WWWGRP} ${.CURDIR}/${_data} ${WWWDIR} +.endfor +.for _image in ${IMAGES} + ${INSTALL} -m0644 -o${WWWOWN} -g${WWWGRP} ${_image} ${WWWDIR} .endfor ${IMAGES}: ${.TARGET}.uu |