svn commit: r439860 - head/sysutils/fusefs-lkl

Gerald Pfeifer gerald at FreeBSD.org
Mon May 1 08:42:20 UTC 2017


Author: gerald
Date: Mon May  1 08:42:19 2017
New Revision: 439860
URL: https://svnweb.freebsd.org/changeset/ports/439860

Log:
  Replace USE_GCC=yes by a strict build dependency on lang/gcc since
  only that guarantees that a binary (or actually symlink) named gcc
  is present which this ports apparently requires.
  
  USE_GCC=yes allows users to adjust the default version of GCC via
  Mk/bsd.defaults-versions.mk, and with the change coming via PR218330
  lang/gcc5 is going to be used instead of the (nearly identical, for
  now) lang/gcc shortly.
  
  PR:		218475, 218330
  Approved by:	cem (maintainer)

Modified:
  head/sysutils/fusefs-lkl/Makefile

Modified: head/sysutils/fusefs-lkl/Makefile
==============================================================================
--- head/sysutils/fusefs-lkl/Makefile	Mon May  1 08:15:32 2017	(r439859)
+++ head/sysutils/fusefs-lkl/Makefile	Mon May  1 08:42:19 2017	(r439860)
@@ -14,12 +14,12 @@ COMMENT=	Full-featured Linux BTRFS, Ext4
 
 LICENSE=	GPLv2
 
-BUILD_DEPENDS=	gnubc>0:math/gnubc
+BUILD_DEPENDS=	gnubc>0:math/gnubc \
+		gcc>0:lang/gcc
 
 USES=		fuse gmake python:build shebangfix
 SHEBANG_FILES=	../../arch/lkl/scripts/headers_install.py
 USE_BINUTILS=	yes
-USE_GCC=	yes
 USE_GITHUB=	yes
 GH_PROJECT=	linux
 


More information about the svn-ports-all mailing list