summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorwill <will@FreeBSD.org>2014-09-18 14:41:57 +0000
committerwill <will@FreeBSD.org>2014-09-18 14:41:57 +0000
commit8fbdaa50eadab69ef1db450a95198973f693f629 (patch)
treec6bee08342bef09d8f3a5f01846ae706f5bd259e /usr.sbin
parent0917a065ca1381c4aa57563ea3ebf5092d237a14 (diff)
downloadFreeBSD-src-8fbdaa50eadab69ef1db450a95198973f693f629.zip
FreeBSD-src-8fbdaa50eadab69ef1db450a95198973f693f629.tar.gz
Fix incremental builds involving non-root users with read-only source files.
Makefiles should not assume that source files can be overwritten. This is the common case for Perforce source trees. This is a followup commit to r211243 in the same vein. MFC after: 1 month Sponsored by: Spectra Logic MFSpectraBSD: r1036319 on 2014/01/29, r1046711 on 2014/03/06
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/mtree/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/mtree/Makefile b/usr.sbin/mtree/Makefile
index e73815a..1ceb52e 100644
--- a/usr.sbin/mtree/Makefile
+++ b/usr.sbin/mtree/Makefile
@@ -17,6 +17,6 @@ LDADD= -lmd
CLEANFILES+= fmtree.8
fmtree.8: mtree.8
- cp ${.ALLSRC} ${.TARGET}
+ cp -f ${.ALLSRC} ${.TARGET}
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud