Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Dec 2013 13:40:51 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r338114 - branches/2014Q1/sysutils/multitail
Message-ID:  <201312301340.rBUDepAg045177@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312301340.rBUDepAg045177>