summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2003-05-17 14:15:59 +0000
committerdes <des@FreeBSD.org>2003-05-17 14:15:59 +0000
commitf073845867339611311cc229f04f9cdc8e93d1a8 (patch)
tree39831351b77b6b958183763f3cb096b5bdf805a8 /tools
parentd16a0d97c4eac52e717fd34c3e7d26a487c77348 (diff)
downloadFreeBSD-src-f073845867339611311cc229f04f9cdc8e93d1a8.zip
FreeBSD-src-f073845867339611311cc229f04f9cdc8e93d1a8.tar.gz
Make sure realinstall works when ${.OBJDIR} != ${.CURDIR}.
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/tinderbox/www/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/tools/tinderbox/www/Makefile b/tools/tools/tinderbox/www/Makefile
index ba40ed9..ca9d4e8 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>
OpenPOWER on IntegriCloud