Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Apr 2011 12:42:40 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r220491 - stable/8
Message-ID:  <201104091242.p39Cgegh014222@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Sat Apr  9 12:42:40 2011
New Revision: 220491
URL: http://svn.freebsd.org/changeset/base/220491

Log:
  MFC r217735:
  
    Make `make tinderbox` work with MAKEOBJDIRPREFIX set (or in possibly other
    combinations) by forcing FAILFILE into .CURDIR as we do for all other
    universe output files. [1]  Similarly make FAILFILE start with "_." as well.
  
    Reviewed by:  silence-on-src [1]

Modified:
  stable/8/Makefile   (contents, props changed)

Modified: stable/8/Makefile
==============================================================================
--- stable/8/Makefile	Sat Apr  9 12:38:09 2011	(r220490)
+++ stable/8/Makefile	Sat Apr  9 12:42:40 2011	(r220491)
@@ -292,7 +292,7 @@ UNIVERSE_TARGET?=	buildworld
 KERNSRCDIR?=		${.CURDIR}/sys
 
 .if defined(DOING_TINDERBOX)
-FAILFILE=tinderbox.failed
+FAILFILE=${.CURDIR}/_.tinderbox.failed
 MAKEFAIL=tee -a ${FAILFILE}
 .else
 MAKEFAIL=cat



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