Author: will
Date: Thu Sep 18 14:50:21 2014
New Revision: 271775
URL: http://svnweb.freebsd.org/changeset/base/271775

Log:
  Fix incremental builds involving non-root users with read-only source files.
  This is a followup commit to r271771.
  
  MFC after:    1 month

Modified:
  head/kerberos5/lib/libasn1/Makefile

Modified: head/kerberos5/lib/libasn1/Makefile
==============================================================================
--- head/kerberos5/lib/libasn1/Makefile Thu Sep 18 14:47:13 2014        
(r271774)
+++ head/kerberos5/lib/libasn1/Makefile Thu Sep 18 14:50:21 2014        
(r271775)
@@ -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>
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to