svn commit: r202578 - head/share/mk

Ruslan Ermilov ru at FreeBSD.org
Mon Jan 18 15:41:55 UTC 2010


Author: ru
Date: Mon Jan 18 15:41:55 2010
New Revision: 202578
URL: http://svn.freebsd.org/changeset/base/202578

Log:
  If CTAGS is not set or set to something other than "ctags" or "gtags",
  "cleandepend" was not removing the .depend file; fixed.
  
  PR:		126747
  MFC after:	3 days

Modified:
  head/share/mk/bsd.dep.mk

Modified: head/share/mk/bsd.dep.mk
==============================================================================
--- head/share/mk/bsd.dep.mk	Mon Jan 18 14:51:00 2010	(r202577)
+++ head/share/mk/bsd.dep.mk	Mon Jan 18 15:41:55 2010	(r202578)
@@ -182,6 +182,8 @@ cleandepend:
 .if defined(HTML)
 	rm -rf HTML
 .endif
+.else
+	rm -f ${DEPENDFILE}
 .endif
 .endif
 .endif


More information about the svn-src-head mailing list