summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2004-01-25 19:11:43 +0000
committerdes <des@FreeBSD.org>2004-01-25 19:11:43 +0000
commit1166334a41aad701159fad8e762aec6fc56e0550 (patch)
tree70957e2e88153677d62e583e4701ad9258e5e223 /tools
parent58663a2dba3d30ead50760c6163002c2c65c6020 (diff)
downloadFreeBSD-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/Makefile7
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
OpenPOWER on IntegriCloud