Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Sep 2014 14:54:20 +0000 (UTC)
From:      Will Andrews <will@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r271778 - head/lib/libunbound
Message-ID:  <201409181454.s8IEsKlM081601@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409181454.s8IEsKlM081601>