svn commit: r250116 - head/etc

Brooks Davis brooks at FreeBSD.org
Tue Apr 30 19:26:45 UTC 2013


Author: brooks
Date: Tue Apr 30 19:26:44 2013
New Revision: 250116
URL: http://svnweb.freebsd.org/changeset/base/250116

Log:
  Make an attempt to detect missing MTREE files in distrib-dirs.  Not
  perfect, but this is just a developer seatbelt.
  
  PR:		conf/176897
  Submitted by:	Garrett Cooper <yaneurabeya at gmail.com>
  MFC after:	1 week

Modified:
  head/etc/Makefile

Modified: head/etc/Makefile
==============================================================================
--- head/etc/Makefile	Tue Apr 30 18:48:11 2013	(r250115)
+++ head/etc/Makefile	Tue Apr 30 19:26:44 2013	(r250116)
@@ -328,7 +328,7 @@ MTREES+=	mtree/BSD.sendmail.dist		/
 MTREES+=	../${mtree}			/
 .endfor
 
-distrib-dirs:
+distrib-dirs: ${MTREES:N/*}
 	@set ${MTREES}; \
 	while test $$# -ge 2; do \
 		m=${.CURDIR}/$$1; \


More information about the svn-src-all mailing list