From owner-svn-ports-head@FreeBSD.ORG Wed Apr 16 16:29:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 74506EC9; Wed, 16 Apr 2014 16:29:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 604C2132B; Wed, 16 Apr 2014 16:29:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3GGTdgg009633; Wed, 16 Apr 2014 16:29:39 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3GGTd1u009629; Wed, 16 Apr 2014 16:29:39 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201404161629.s3GGTd1u009629@svn.freebsd.org> From: Bryan Drewery Date: Wed, 16 Apr 2014 16:29:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351399 - in head: . Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2014 16:29:39 -0000 Author: bdrewery Date: Wed Apr 16 16:29:38 2014 New Revision: 351399 URL: http://svnweb.freebsd.org/changeset/ports/351399 QAT: https://qat.redports.org/buildarchive/r351399/ Log: - Make default target "make stage" if staging supported. This is so that 'make' followed by 'make deinstall install' will, by default, have a much shorter period of files missing on the system as it is without staging. Discussed with: bapt With hat: portmgr Modified: head/CHANGES head/Mk/bsd.port.mk Modified: head/CHANGES ============================================================================== --- head/CHANGES Wed Apr 16 16:12:04 2014 (r351398) +++ head/CHANGES Wed Apr 16 16:29:38 2014 (r351399) @@ -10,6 +10,12 @@ in the release notes and/or placed into All ports committers are allowed to commit to this file. +20140416: +AUTHOR: bdrewery@FreeBSD.org + + The default target for 'make' now runs 'make stage' if the port supports + it, otherwise 'make build' as before. + 20140411: AUTHOR: bdrewery@FreeBSD.org Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Apr 16 16:12:04 2014 (r351398) +++ head/Mk/bsd.port.mk Wed Apr 16 16:29:38 2014 (r351399) @@ -3165,7 +3165,11 @@ all: .endif .if !target(all) +. if defined(NO_STAGE) all: build +. else +all: stage +. endif .endif .if !defined(DEPENDS_TARGET)