aboutsummaryrefslogtreecommitdiff
path: root/kerberos5/lib
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2014-09-18 14:50:21 +0000
committerWill Andrews <will@FreeBSD.org>2014-09-18 14:50:21 +0000
commit93e8837937a07df3daf5e713664f980efd8e77b9 (patch)
tree1cd0619a91dbf727ad0f776605c3f63ec316a7aa /kerberos5/lib
parent1b7fb1d93f31d61df2cbc2529854769e02bc5363 (diff)
downloadsrc-93e8837937a07df3daf5e713664f980efd8e77b9.tar.gz
src-93e8837937a07df3daf5e713664f980efd8e77b9.zip
Fix incremental builds involving non-root users with read-only source files.
This is a followup commit to r271771. MFC after: 1 month
Notes
Notes: svn path=/head/; revision=271775
Diffstat (limited to 'kerberos5/lib')
-rw-r--r--kerberos5/lib/libasn1/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/kerberos5/lib/libasn1/Makefile b/kerberos5/lib/libasn1/Makefile
index dc1de5c61506..02e6a4975fd4 100644
--- a/kerberos5/lib/libasn1/Makefile
+++ b/kerberos5/lib/libasn1/Makefile
@@ -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>