diff options
author | des <des@FreeBSD.org> | 2003-07-23 20:22:50 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-07-23 20:22:50 +0000 |
commit | 928703e4b60bc3e4973aa00f0c2156e73d5cb9db (patch) | |
tree | ed4aa52012864e5c7237d8aab02efcf856e82af3 /tools | |
parent | 26842e222a80b2cb852bdb89da7c877ed48a027e (diff) | |
download | FreeBSD-src-928703e4b60bc3e4973aa00f0c2156e73d5cb9db.zip FreeBSD-src-928703e4b60bc3e4973aa00f0c2156e73d5cb9db.tar.gz |
Install rc files from ${.CURDIR}, not ${.OBJDIR}.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tinderbox/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/tools/tinderbox/Makefile b/tools/tools/tinderbox/Makefile index 0fb0193..7bf8a66 100644 --- a/tools/tools/tinderbox/Makefile +++ b/tools/tools/tinderbox/Makefile @@ -19,6 +19,7 @@ ETCOWN ?= ${USER} ETCGRP ?= ${USER} beforeinstall: - ${INSTALL} -m 0644 -o ${ETCOWN} -g ${ETCGRP} ${RCFILES} ${ETCDIR} + (cd ${.CURDIR} &&\ + ${INSTALL} -m 0644 -o ${ETCOWN} -g ${ETCGRP} ${RCFILES} ${ETCDIR}) .include <bsd.prog.mk> |