Date: Sat, 28 Sep 2013 13:34:21 +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: r328568 - head/databases/riak Message-ID: <201309281334.r8SDYLah082208@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Sat Sep 28 13:34:21 2013 New Revision: 328568 URL: http://svnweb.freebsd.org/changeset/ports/328568 Log: - Fix install due to PREFIX not being defined by including bsd.port.pre.mk This was not caught because 'poudriere testport' (in 3.0.8) was setting PREFIX in the environment which removes the need to include bsd.port.pre.mk. bulk -t was showing this problem though because it does not set PREFIX in the environment. PR: ports/182453 Reported by: Kenji Rikitake <kenji.rikitake@acm.org> Approved by: maintainer (implicit via original submission) Pointyhat to: bdrewery Modified: head/databases/riak/Makefile Modified: head/databases/riak/Makefile ============================================================================== --- head/databases/riak/Makefile Sat Sep 28 13:34:04 2013 (r328567) +++ head/databases/riak/Makefile Sat Sep 28 13:34:21 2013 (r328568) @@ -37,6 +37,8 @@ MAKE_JOBS_UNSAFE=yes MAKE_ENV= PATH=${LOCALBASE}/lib/erlang15/bin:${PATH} NO_STAGE= yes +.include <bsd.port.pre.mk> + pre-install: ${RM} -f ${PLIST} ${CAT} ${PKGDIR}/pkg-plist >> ${PLIST} @@ -96,4 +98,4 @@ post-install: ${CP} -p ${RIAK_CONFDIR}/key.pem.sample ${RIAK_CONFDIR}/key.pem; \ fi -.include <bsd.port.mk> +.include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309281334.r8SDYLah082208>