svn commit: r338114 - branches/2014Q1/sysutils/multitail

Mathieu Arnold mat at FreeBSD.org
Mon Dec 30 13:40:51 UTC 2013


Author: mat
Date: Mon Dec 30 13:40:51 2013
New Revision: 338114
URL: http://svnweb.freebsd.org/changeset/ports/338114

Log:
  MFH: r338113
  
  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.
  
  Approved by:	portmgr (implicit)

Modified:
  branches/2014Q1/sysutils/multitail/Makefile
Directory Properties:
  branches/2014Q1/   (props changed)

Modified: branches/2014Q1/sysutils/multitail/Makefile
==============================================================================
--- branches/2014Q1/sysutils/multitail/Makefile	Mon Dec 30 13:39:47 2013	(r338113)
+++ branches/2014Q1/sysutils/multitail/Makefile	Mon Dec 30 13:40:51 2013	(r338114)
@@ -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-branches mailing list