From 1166334a41aad701159fad8e762aec6fc56e0550 Mon Sep 17 00:00:00 2001 From: des Date: Sun, 25 Jan 2004 19:11:43 +0000 Subject: Fix the case where .OBJDIR != .CURDIR. --- tools/tools/tinderbox/www/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'tools') 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 -- cgit v1.1