Fix incremental builds involving non-root users with read-only source files.

This is a followup commit to r271771.

MFC after:	1 month
This commit is contained in:
Will Andrews 2014-09-18 14:50:21 +00:00
parent 1b7fb1d93f
commit 93e8837937
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271775

View File

@ -112,10 +112,10 @@ ${GEN_KX509}: kx509.asn1
.SUFFIXES: .h .c .x .hx
.x.c:
cp ${.IMPSRC} ${.TARGET}
cp -f ${.IMPSRC} ${.TARGET}
.hx.h:
cp ${.IMPSRC} ${.TARGET}
cp -f ${.IMPSRC} ${.TARGET}
.include <bsd.lib.mk>