Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Aug 2014 00:54:00 +0000 (UTC)
From:      Glen Barber <gjb@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: r270316 - stable/10/etc
Message-ID:  <201408220054.s7M0s0As096576@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb
Date: Fri Aug 22 00:54:00 2014
New Revision: 270316
URL: http://svnweb.freebsd.org/changeset/base/270316

Log:
  Use 'WITHOUT_TESTS=1' instead of 'MK_TESTS=no' in the
  'distribute' target of etc/Makefile, because we do not
  allow command-line use of 'make MK_TESTS=no' in stable/10.
  
  This fixes a regression introduced in r270187 that causes
  the release build to fail, and a direct commit to stable/10.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/10/etc/Makefile

Modified: stable/10/etc/Makefile
==============================================================================
--- stable/10/etc/Makefile	Thu Aug 21 22:53:14 2014	(r270315)
+++ stable/10/etc/Makefile	Fri Aug 22 00:54:00 2014	(r270316)
@@ -176,7 +176,7 @@ afterinstall:
 distribute:
 	# Avoid installing tests here; "make distribution" will do this and
 	# correctly place them in the right location.
-	${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \
+	${_+_}cd ${.CURDIR} ; ${MAKE} WITHOUT_TESTS=1 install \
 	    DESTDIR=${DISTDIR}/${DISTRIBUTION}
 	${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
 



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