From owner-svn-ports-all@FreeBSD.ORG Tue May 19 21:14:55 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA90AB1; Tue, 19 May 2015 21:14:55 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A077216A5; Tue, 19 May 2015 21:14:55 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 079A5BDC24; Tue, 19 May 2015 23:14:53 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id F3840BDC1F; Tue, 19 May 2015 23:14:52 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id BB46835D32EF; Tue, 19 May 2015 23:14:52 +0200 (CEST) Date: Tue, 19 May 2015 23:14:52 +0200 From: Mathieu Arnold To: Adam Weinberger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r386790 - head/devel/p5-Module-Build Message-ID: In-Reply-To: <201505191624.t4JGOgFE039776@svn.freebsd.org> References: <201505191624.t4JGOgFE039776@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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: Tue, 19 May 2015 21:14:56 -0000 +--On 19 mai 2015 16:24:42 +0000 Adam Weinberger wrote: | +BUILD_DEPENDS+= p5-CPAN-Meta>=2.142060:${PORTSDIR}/devel/p5-CPAN-Meta | +RUN_DEPENDS:= ${BUILD_DEPENDS} That is *wrong* If you're going to overwrite RUN_DEPENDS that could have came in with bsd.pre.mk, or add build only dependencies to run deps that came with it. You have to do: BUILD_DEPENDS+= p5-CPAN-Meta>=2.142060:${PORTSDIR}/devel/p5-CPAN-Meta RUN_DEPENDS+= p5-CPAN-Meta>=2.142060:${PORTSDIR}/devel/p5-CPAN-Meta -- Mathieu Arnold