From owner-svn-ports-all@FreeBSD.ORG Wed Mar 27 23:39:43 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DDB81E68; Wed, 27 Mar 2013 23:39:43 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CEDCA9DA; Wed, 27 Mar 2013 23:39:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2RNdh3S001511; Wed, 27 Mar 2013 23:39:43 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2RNdhlO001510; Wed, 27 Mar 2013 23:39:43 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201303272339.r2RNdhlO001510@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 27 Mar 2013 23:39:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315421 - head/Mk/Uses 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.14 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: Wed, 27 Mar 2013 23:39:43 -0000 Author: bapt Date: Wed Mar 27 23:39:43 2013 New Revision: 315421 URL: http://svnweb.freebsd.org/changeset/ports/315421 Log: Workaround a bug in tinderbox/pointyhat that leaks /sbin/mount_fuse from the host when host is HEAD. This leads when building packages for 9.x or 8.x to ignore the fuse-kmod dependency the fuse ports should have on those versions. Modified: head/Mk/Uses/fuse.mk Modified: head/Mk/Uses/fuse.mk ============================================================================== --- head/Mk/Uses/fuse.mk Wed Mar 27 23:37:51 2013 (r315420) +++ head/Mk/Uses/fuse.mk Wed Mar 27 23:39:43 2013 (r315421) @@ -17,7 +17,7 @@ IGNORE= USES=fuse does not require args .endif LIB_DEPENDS+= fuse:${PORTSDIR}/sysutils/fusefs-libs -.if !exists(/sbin/mount_fusefs) +.if !exists(/sbin/mount_fusefs) || ${OSVERSION} < 1000019 RUN_DEPENDS+= mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod .endif