svn commit: r338113 - head/sysutils/multitail

Mathieu Arnold mat at FreeBSD.org
Mon Dec 30 13:39:48 UTC 2013


Author: mat
Date: Mon Dec 30 13:39:47 2013
New Revision: 338113
URL: http://svnweb.freebsd.org/changeset/ports/338113

Log:
  Fixup the config file path, otherwise, it ends up trying to read it from, the
  stagedir, which, from a poudriere built package would be:
  
  You can prevent this message by adding the line 'check_mail:0' in
  /wrkdirs/usr/ports/sysutils/multitail/work/stage/usr/local/etc/multitail.conf
  or in .multitailrc in your home-directory.

Modified:
  head/sysutils/multitail/Makefile

Modified: head/sysutils/multitail/Makefile
==============================================================================
--- head/sysutils/multitail/Makefile	Mon Dec 30 13:25:50 2013	(r338112)
+++ head/sysutils/multitail/Makefile	Mon Dec 30 13:39:47 2013	(r338113)
@@ -3,6 +3,7 @@
 
 PORTNAME=	multitail
 PORTVERSION=	5.2.12
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	http://www.vanheusden.com/multitail/ \
 		http://fossies.org/unix/privat/
@@ -23,7 +24,7 @@ PORTDOCS=	readme.txt license.txt
 .include <bsd.port.options.mk>
 
 post-patch:
-	@${REINPLACE_CMD} -e 's,/etc/multitail.conf,${PREFIX}/etc/multitail.conf,' \
+	@${REINPLACE_CMD} -e 's,$$(DESTDIR)/etc/multitail.conf,${PREFIX}/etc/multitail.conf,' \
 		-e 's/CC=gcc/CC?=gcc/' \
 		${WRKSRC}/mt.c ${WRKSRC}/Makefile
 


More information about the svn-ports-all mailing list