Date: Fri, 19 May 2017 19:26:33 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441265 - head/devel/kyua Message-ID: <201705191926.v4JJQXUD082665@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Fri May 19 19:26:32 2017 New Revision: 441265 URL: https://svnweb.freebsd.org/changeset/ports/441265 Log: WITH_CCACHE_BUILD: Don't leak ccache in as a runtime-dependency. fmake and bmake's := feature does not evaluate a variable immediately if it does not yet exist (bmake's manpage notes this). In this case BUILD_DEPENDS is empty but later gets ccache added to it. So when RUN_DEPENDS is finally evaluated it actually gets ccache in it. This line was not useful anyhow since there were not BUILD_DEPENDS to add in; LIB_DEPENDS is its own unique thing that works as a BUILD and RUN dependency but not directly related to the other variables. Sponsored by: Dell EMC Isilon Modified: head/devel/kyua/Makefile Modified: head/devel/kyua/Makefile ============================================================================== --- head/devel/kyua/Makefile Fri May 19 19:02:19 2017 (r441264) +++ head/devel/kyua/Makefile Fri May 19 19:26:32 2017 (r441265) @@ -3,7 +3,7 @@ PORTNAME= kyua PORTVERSION= 0.13 PORTEPOCH= 3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= https://github.com/jmmv/kyua/releases/download/${PORTNAME}-${PORTVERSION}/ \ LOCAL/jmmv @@ -15,7 +15,6 @@ LICENSE= BSD3CLAUSE LIB_DEPENDS= liblutok.so:devel/lutok LIB_DEPENDS+= libsqlite3.so:databases/sqlite3 -RUN_DEPENDS:= ${BUILD_DEPENDS} CONFLICTS= kyua-atf-compat-[0-9]* kyua-cli-[0-9]* kyua-testers-[0-9]*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705191926.v4JJQXUD082665>