svn commit: r269078 - stable/10

Dimitry Andric dim at FreeBSD.org
Thu Jul 24 20:16:45 UTC 2014


Author: dim
Date: Thu Jul 24 20:16:45 2014
New Revision: 269078
URL: http://svnweb.freebsd.org/changeset/base/269078

Log:
  MFC r268957:
  
  Run mtree for BSD.tests.dist during make xdev-install, if the tests are
  enabled (which they are in the default configuration).  Otherwise, it
  will fail because ${XDDESTDIR}/usr/include/atf-c does not exist.

Modified:
  stable/10/Makefile.inc1
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/Makefile.inc1
==============================================================================
--- stable/10/Makefile.inc1	Thu Jul 24 19:06:15 2014	(r269077)
+++ stable/10/Makefile.inc1	Thu Jul 24 20:16:45 2014	(r269078)
@@ -1962,6 +1962,10 @@ _xi-mtree:
 	    -p ${XDDESTDIR}/usr >/dev/null
 	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
 	    -p ${XDDESTDIR}/usr/include >/dev/null
+.if ${MK_TESTS} != "no"
+	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
+	    -p ${XDDESTDIR}/usr >/dev/null
+.endif
 
 .ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
 xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links


More information about the svn-src-all mailing list