From owner-svn-ports-head@freebsd.org Fri Jul 24 11:05:54 2015 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 9C88B9A9B38; Fri, 24 Jul 2015 11:05:54 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.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 8CED618E2; Fri, 24 Jul 2015 11:05:54 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6OB5sXY046008; Fri, 24 Jul 2015 11:05:54 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6OB5sfH046007; Fri, 24 Jul 2015 11:05:54 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201507241105.t6OB5sfH046007@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 24 Jul 2015 11:05:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392818 - head/Mk/Scripts 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.20 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, 24 Jul 2015 11:05:54 -0000 Author: mat Date: Fri Jul 24 11:05:53 2015 New Revision: 392818 URL: https://svnweb.freebsd.org/changeset/ports/392818 Log: [Forced commit to explain the previous commit] Before this, you could say: BUILD_DEPENDS= libfoo.so:some/foo LIB_DEPENDS= bar:some/bar The package would build because the dependencies would be installed correctly. But, the dependencies would not be registered in the package, and it would be non functionnal when installed. Now, if you say the same thing, it will tell you that 1) it can't find exececutable libfoo.so 2) bar is not a valid pattern for LIB_DEPENDS giving you a hint that you are doing something wrong. Poked by: myself, bapt Modified: head/Mk/Scripts/do-depends.sh Modified: head/Mk/Scripts/do-depends.sh ==============================================================================