From owner-svn-src-all@FreeBSD.ORG Wed Aug 20 00:28:34 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A23CF55; Wed, 20 Aug 2014 00:28:34 +0000 (UTC) Received: from mail-ig0-x22a.google.com (mail-ig0-x22a.google.com [IPv6:2607:f8b0:4001:c05::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E720431EE; Wed, 20 Aug 2014 00:28:33 +0000 (UTC) Received: by mail-ig0-f170.google.com with SMTP id h3so10477386igd.3 for ; Tue, 19 Aug 2014 17:28:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=DcWoNuqS+A66nuOojkn9rGU3pd/k/KBFGr/7P91MuUw=; b=AhDWb4t9gwvqza0EqD1qgogBZcN4eogthkvFFQ+O7f+a9mbf8ITmpHAUGaazNBW8Uk LK+BNzZ8Td7Xn8f1wAOxgVZPwyR0oe7YVNF1Eeyl6kLq7fvNlzWxFgCJJ0KXeCrpSX41 hh0MleVQdbL1F6ZRfFmgI/aEkTe5tAvX5vrAnWwzBA76ggckELTMaGa3LFopIH5GtHKp 09MKXmov2PbwZKGevJ55RhwCeLajdjTxwNnY9jjt6gP13TF83JLL+cYnZne8riRC5y2y SylY7gACBzX6hX+lkmQcg6S/Z71mnku3tezERgfyokbxUnj0PsDbMtyqtMHQ8411im3w NgjQ== MIME-Version: 1.0 X-Received: by 10.50.32.10 with SMTP id e10mr9489827igi.7.1408494513346; Tue, 19 Aug 2014 17:28:33 -0700 (PDT) Received: by 10.50.72.69 with HTTP; Tue, 19 Aug 2014 17:28:33 -0700 (PDT) In-Reply-To: <201408192333.s7JNXpiC028815@svn.freebsd.org> References: <201408192333.s7JNXpiC028815@svn.freebsd.org> Date: Tue, 19 Aug 2014 17:28:33 -0700 Message-ID: Subject: Re: svn commit: r270187 - in stable/10: . etc lib share/mk From: Garrett Cooper To: Ian Lepore Content-Type: text/plain; charset=UTF-8 Cc: svn-src-stable@freebsd.org, "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , svn-src-stable-10@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Aug 2014 00:28:34 -0000 On Tue, Aug 19, 2014 at 4:33 PM, Ian Lepore wrote: > Author: ian > Date: Tue Aug 19 23:33:51 2014 > New Revision: 270187 > URL: http://svnweb.freebsd.org/changeset/base/270187 > > Log: > MFC r266473,267331,267511: ... > Modified: stable/10/etc/Makefile > ============================================================================== > --- stable/10/etc/Makefile Tue Aug 19 23:15:47 2014 (r270186) > +++ stable/10/etc/Makefile Tue Aug 19 23:33:51 2014 (r270187) > @@ -174,7 +174,10 @@ afterinstall: > .endif > > distribute: > - ${_+_}cd ${.CURDIR} ; ${MAKE} install DESTDIR=${DISTDIR}/${DISTRIBUTION} > + # Avoid installing tests here; "make distribution" will do this and > + # correctly place them in the right location. > + ${_+_}cd ${.CURDIR} ; ${MAKE} MK_TESTS=no install \ > + DESTDIR=${DISTDIR}/${DISTRIBUTION} > ${_+_}cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION} Hi Ian! Does explicitly setting MK_TESTS=no work without Warner's changes to bsd.own.mk/src.opts.mk? Did you test this option with WITH_TESTS= yes ? Thanks! -Garrett