diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2002-10-09 00:17:30 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2002-10-09 00:17:30 +0000 |
commit | cec1f9fdbda7473f2c565c7614fbc9b29ae0a736 (patch) | |
tree | e59b91c3b9c7763521b6b799119860e75d14e4de /mail/spamprobe | |
parent | Update to 0.7c. Respect C(XX)FLAGS. The new version uses md5 checksums (diff) |
Pass MAKE_ENV to post-build and post-install MAKE invocations to ensure
the things like PREFIX are correct. BTW, this software compiles/link
with db4 as well as db3 now, but the port unconditionally uses db3.
Notes
Notes:
svn path=/head/; revision=67673
Diffstat (limited to 'mail/spamprobe')
-rw-r--r-- | mail/spamprobe/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/spamprobe/Makefile b/mail/spamprobe/Makefile index 4d17e4b0a2da..63c96da5ad02 100644 --- a/mail/spamprobe/Makefile +++ b/mail/spamprobe/Makefile @@ -21,14 +21,15 @@ MAKE_ENV+= FILESDIR="${FILESDIR}" .include <bsd.port.pre.mk> post-build: - @cd ${WRKSRC} && ${MAKE} -f ${FILESDIR}/Makefile.export0_6 clean - @cd ${WRKSRC} && ${MAKE} -f ${FILESDIR}/Makefile.export0_6 + @cd ${WRKSRC} && ${MAKE_ENV} ${MAKE} -f \ + ${FILESDIR}/Makefile.export0_6 clean all post-extract: @${RM} -rf ${WRKSRC}/thirdparty post-install: - @cd ${WRKSRC} && ${MAKE} -f ${FILESDIR}/Makefile.export0_6 install + @cd ${WRKSRC} && ${MAKE_ENV} ${MAKE} -f \ + ${FILESDIR}/Makefile.export0_6 install @${CAT} ${FILESDIR}/post-install-notes .include <bsd.port.post.mk> |