svn commit: r51331 - head/share/pgpkeys

Glen Barber gjb at FreeBSD.org
Fri Dec 22 19:44:56 UTC 2017


Author: gjb
Date: Fri Dec 22 19:44:54 2017
New Revision: 51331
URL: https://svnweb.freebsd.org/changeset/doc/51331

Log:
  Ensure pgpkeyring.txt is always regenerated to prevent stale keys
  from existing on the website until a full, clean build is done.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/share/pgpkeys/Makefile

Modified: head/share/pgpkeys/Makefile
==============================================================================
--- head/share/pgpkeys/Makefile	Fri Dec 22 17:48:44 2017	(r51330)
+++ head/share/pgpkeys/Makefile	Fri Dec 22 19:44:54 2017	(r51331)
@@ -21,7 +21,7 @@ keyring.xml:	.PHONY
 pgpkeyring: keyring.xml
 	@${XSLTPROC} ${XSLTPROCOPTS} ${XSLPGP} keyring.xml
 
-pgpkeyring.txt:
+pgpkeyring.txt:	.PHONY
 	@${RM} -f ${.TARGET}.tmp || true
 	@${MAKE} -C ${.CURDIR} pgpkeyring > ${.TARGET}.tmp
 	${MV} ${.TARGET}.tmp ${.TARGET}


More information about the svn-doc-all mailing list