Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Oct 2016 13:11:34 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r424243 - head/sysutils/dirvish
Message-ID:  <201610191311.u9JDBYFu048833@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Wed Oct 19 13:11:33 2016
New Revision: 424243
URL: https://svnweb.freebsd.org/changeset/ports/424243

Log:
  Always use PERL and not PERL5 in scripts.
  
  If you use PERL5, the scripts will break when Perl is updated.
  
  Sponsored by:	Absolight

Modified:
  head/sysutils/dirvish/Makefile   (contents, props changed)

Modified: head/sysutils/dirvish/Makefile
==============================================================================
--- head/sysutils/dirvish/Makefile	Wed Oct 19 12:20:42 2016	(r424242)
+++ head/sysutils/dirvish/Makefile	Wed Oct 19 13:11:33 2016	(r424243)
@@ -3,7 +3,7 @@
 
 PORTNAME=	dirvish
 PORTVERSION=	1.2.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils archivers
 MASTER_SITES=	http://www.dirvish.org/
 
@@ -25,7 +25,7 @@ USE_PERL5=	run
 EXECUTABLES=	dirvish   dirvish-expire   dirvish-locate   dirvish-runall
 
 do-patch:
-	@${SED} -e 's:%%CONFDIR%%:${PREFIX}/etc/dirvish:' -e 's:%%PERL%%:${PERL5}:' \
+	@${SED} -e 's:%%CONFDIR%%:${PREFIX}/etc/dirvish:' -e 's:%%PERL%%:${PERL}:' \
 		${FILESDIR}/header.pl > ${WRKDIR}/header.pl
 .for _E in ${EXECUTABLES}
 	@(cd ${WRKSRC} && ${CAT} ${WRKDIR}/header.pl ${_E}.pl loadconfig.pl \



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