Date: Wed, 27 Mar 2013 23:39:43 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315421 - head/Mk/Uses Message-ID: <201303272339.r2RNdhlO001510@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303272339.r2RNdhlO001510>