svn commit: r328568 - head/databases/riak
Bryan Drewery
bdrewery at FreeBSD.org
Sat Sep 28 13:34:22 UTC 2013
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 at 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>
More information about the svn-ports-all
mailing list