diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-05-17 14:15:59 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-05-17 14:15:59 +0000 |
| commit | 97e0102665444860edc62c336f2a2d157c924f69 (patch) | |
| tree | 39831351b77b6b958183763f3cb096b5bdf805a8 /tools | |
| parent | 64afb48f6c13219a8b64715205f795331f43eea1 (diff) | |
Notes
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/tools/tinderbox/www/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/tools/tinderbox/www/Makefile b/tools/tools/tinderbox/www/Makefile index ba40ed9b4e27..ca9d4e812b2b 100644 --- a/tools/tools/tinderbox/www/Makefile +++ b/tools/tools/tinderbox/www/Makefile @@ -5,7 +5,9 @@ DATA = tb.css valid-css.gif valid-xhtml10.png WWWDIR ?= ${HOME}/public_html realinstall: - ${INSTALL} -m 0755 ${CGI} ${WWWDIR} - ${INSTALL} -m 0644 ${DATA} ${WWWDIR} + ${INSTALL} -m 0755 ${.CURDIR}/${CGI} ${WWWDIR} +.for FILE in ${DATA} + ${INSTALL} -m 0644 ${.CURDIR}/${FILE} ${WWWDIR} +.endfor .include <bsd.prog.mk> |
