svn commit: r271775 - head/kerberos5/lib/libasn1

Will Andrews will at FreeBSD.org
Thu Sep 18 14:50:21 UTC 2014


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>
 


More information about the svn-src-head mailing list