summaryrefslogtreecommitdiffstats
path: root/kerberos5
diff options
context:
space:
mode:
authorwill <will@FreeBSD.org>2014-09-18 14:50:21 +0000
committerwill <will@FreeBSD.org>2014-09-18 14:50:21 +0000
commit673f89d2c7ff848638b2d4485af19658a87c8cd4 (patch)
tree1cd0619a91dbf727ad0f776605c3f63ec316a7aa /kerberos5
parentc2d27a81fe2d1f4a607c723cc463421f29501395 (diff)
downloadFreeBSD-src-673f89d2c7ff848638b2d4485af19658a87c8cd4.zip
FreeBSD-src-673f89d2c7ff848638b2d4485af19658a87c8cd4.tar.gz
Fix incremental builds involving non-root users with read-only source files.
This is a followup commit to r271771. MFC after: 1 month
Diffstat (limited to 'kerberos5')
-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 dc1de5c..02e6a49 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>
OpenPOWER on IntegriCloud