From owner-svn-ports-head@freebsd.org Fri Jun 17 16:03:45 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D003A77047; Fri, 17 Jun 2016 16:03:45 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 B582F17C4; Fri, 17 Jun 2016 16:03:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5HG3hAW071810; Fri, 17 Jun 2016 16:03:43 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5HG3h6r071809; Fri, 17 Jun 2016 16:03:43 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201606171603.u5HG3h6r071809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 17 Jun 2016 16:03:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417016 - 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.22 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: Fri, 17 Jun 2016 16:03:45 -0000 Author: mat Date: Fri Jun 17 16:03:43 2016 New Revision: 417016 URL: https://svnweb.freebsd.org/changeset/ports/417016 Log: Fix targets being out of order. Reported by: antoine Sponsored by: Absolight Modified: head/Mk/bsd.autotools.mk (contents, props changed) Modified: head/Mk/bsd.autotools.mk ============================================================================== --- head/Mk/bsd.autotools.mk Fri Jun 17 15:20:35 2016 (r417015) +++ head/Mk/bsd.autotools.mk Fri Jun 17 16:03:43 2016 (r417016) @@ -190,29 +190,28 @@ ${var:tu}_ENV+= ${AUTOTOOLS_VARS} # Make targets #--------------------------------------------------------------------------- +_USES_configure+=460:run-autotools-aclocal 461:run-autotools-autoconf \ + 462:run-autotools-autoheader 463:run-autotools-automake + .if defined(_AUTOTOOL_rule_aclocal) && !target(run-autotools-aclocal) -_USES_configure+= 460:run-autotools-aclocal run-autotools-aclocal: @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${ACLOCAL} \ ${ACLOCAL_ARGS}) .endif -.if defined(_AUTOTOOL_rule_automake) && !target(run-autotools-automake) -_USES_configure+= 461:run-autotools-autoconf -run-autotools-automake: - @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} \ - ${AUTOMAKE_ARGS}) -.endif - .if defined(_AUTOTOOL_rule_autoconf) && !target(run-autotools-autoconf) -_USES_configure+= 462:run-autotools-autoheader run-autotools-autoconf: @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOCONF} \ ${AUTOCONF_ARGS}) .endif +.if defined(_AUTOTOOL_rule_automake) && !target(run-autotools-automake) +run-autotools-automake: + @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} \ + ${AUTOMAKE_ARGS}) +.endif + .if defined(_AUTOTOOL_rule_autoheader) && !target(run-autotools-autoheader) -_USES_configure+= 463:run-autotools-automake run-autotools-autoheader: @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOHEADER} \ ${AUTOHEADER_ARGS})