From owner-svn-ports-all@FreeBSD.ORG Mon Mar 3 18:56:45 2014 Return-Path: Delivered-To: svn-ports-all@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 2B71553D; Mon, 3 Mar 2014 18:56:45 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 18F94DBD; Mon, 3 Mar 2014 18:56:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s23Iuikw066802; Mon, 3 Mar 2014 18:56:44 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s23Iuibk066801; Mon, 3 Mar 2014 18:56:44 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201403031856.s23Iuibk066801@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 3 Mar 2014 18:56:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346952 - 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-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Mar 2014 18:56:45 -0000 Author: mat Date: Mon Mar 3 18:56:44 2014 New Revision: 346952 URL: http://svnweb.freebsd.org/changeset/ports/346952 QAT: https://qat.redports.org/buildarchive/r346952/ Log: Correctly sort the DEPENDS targets. Sponsored by: Absolight Modified: head/Mk/bsd.options.mk Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Mon Mar 3 18:47:37 2014 (r346951) +++ head/Mk/bsd.options.mk Mon Mar 3 18:56:44 2014 (r346952) @@ -112,7 +112,7 @@ # ${opt}_${variable}_OFF will add its content to the actual variable when the # option is disabled. # -# For each of the depends target PKG EXTRACT PATCH FETCH BUILD LIB RUN, +# For each of the depends target PKG FETCH EXTRACT PATCH BUILD LIB RUN, # defining ${opt}_${deptype}_DEPENDS will add its content to the actual # dependency when the option is enabled. Defining # ${opt}_${deptype}_DEPENDS_OFF will add its content to the actual dependency @@ -134,7 +134,7 @@ _OPTIONS_FLAGS= ALL_TARGET CATEGORIES CF EXTRA_PATCHES INSTALL_TARGET LDFLAGS MAKE_ARGS MAKE_ENV \ PATCHFILES PATCH_SITES PLIST_DIRS PLIST_DIRSTRY PLIST_FILES \ USES -_OPTIONS_DEPENDS= PKG EXTRACT PATCH FETCH BUILD LIB RUN +_OPTIONS_DEPENDS= PKG FETCH EXTRACT PATCH BUILD LIB RUN # Set the default values for the global options, as defined by portmgr .if !defined(NOPORTDOCS)