svn commit: r303135 - stable/11/release

Glen Barber gjb at FreeBSD.org
Thu Jul 21 10:44:28 UTC 2016


Author: gjb
Date: Thu Jul 21 10:44:26 2016
New Revision: 303135
URL: https://svnweb.freebsd.org/changeset/base/303135

Log:
  MFC r303003:
  
   Make sure we clean up the rdoc and reldoc directories if NODOC
   is not set.
  
  Approved by:	re (kib)
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/11/release/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/release/Makefile
==============================================================================
--- stable/11/release/Makefile	Thu Jul 21 09:37:17 2016	(r303134)
+++ stable/11/release/Makefile	Thu Jul 21 10:44:26 2016	(r303135)
@@ -119,6 +119,9 @@ CLEANFILES+=	${I}.xz
 CLEANFILES+=	pkg-stage
 .endif
 CLEANDIRS=	dist ftp disc1 bootonly dvd
+.if !defined(NODOC)
+CLEANDIRS+=    reldoc rdoc
+.endif
 beforeclean:
 	chflags -R noschg .
 .include <bsd.obj.mk>


More information about the svn-src-all mailing list