Date: Wed, 25 Jan 2017 16:11:32 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432429 - head/devel/stack Message-ID: <201701251611.v0PGBWKo089098@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701251611.v0PGBWKo089098>