svn commit: r432429 - head/devel/stack

John Marino marino at FreeBSD.org
Wed Jan 25 16:11:33 UTC 2017


Author: marino
Date: Wed Jan 25 16:11:32 2017
New Revision: 432429
URL: https://svnweb.freebsd.org/changeset/ports/432429

Log:
  devel/stack: Fix ambiguous gcc RUN_DEPENDS specification
  
  Not any gcc will suffice, stack needs exactly the gcc from lang/gcc.
  The previous specification would match any gcc found on the search path,
  e.g. a base compiler.
  
  Approved by:	just-fix-it

Modified:
  head/devel/stack/Makefile

Modified: head/devel/stack/Makefile
==============================================================================
--- head/devel/stack/Makefile	Wed Jan 25 16:09:44 2017	(r432428)
+++ head/devel/stack/Makefile	Wed Jan 25 16:11:32 2017	(r432429)
@@ -26,7 +26,7 @@ LIB_DEPENDS=	libiconv.so:converters/libi
 		libgmp.so:math/gmp \
 		libffi.so:devel/libffi
 RUN_DEPENDS=	ca_root_nss>0:security/ca_root_nss \
-		gcc:lang/gcc \
+		${LOCALBASE}/bin/gcc:lang/gcc \
 		gmake:devel/gmake
 USES=		gmake perl5
 


More information about the svn-ports-all mailing list