svn commit: r271778 - head/lib/libunbound

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


Author: will
Date: Thu Sep 18 14:54:20 2014
New Revision: 271778
URL: http://svnweb.freebsd.org/changeset/base/271778

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/lib/libunbound/Makefile

Modified: head/lib/libunbound/Makefile
==============================================================================
--- head/lib/libunbound/Makefile	Thu Sep 18 14:53:30 2014	(r271777)
+++ head/lib/libunbound/Makefile	Thu Sep 18 14:54:20 2014	(r271778)
@@ -33,7 +33,7 @@ LDADD+=	-lssl -lcrypto -lpthread
 
 # Misnamed file in upstream source
 configlexer.l: configlexer.lex
-	cp -p ${.ALLSRC} ${.TARGET}
+	cp -fp ${.ALLSRC} ${.TARGET}
 CLEANFILES+= configlexer.l
 
 # Symbol prefix for lex and yacc


More information about the svn-src-all mailing list