Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Jul 2014 20:16:45 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r269078 - stable/10
Message-ID:  <201407242016.s6OKGjXh055144@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407242016.s6OKGjXh055144>