Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Nov 2016 07:22:49 +0000 (UTC)
From:      Akinori MUSHA <knu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r426148 - head/textproc/peco
Message-ID:  <201611150722.uAF7Mnet029832@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: knu
Date: Tue Nov 15 07:22:49 2016
New Revision: 426148
URL: https://svnweb.freebsd.org/changeset/ports/426148

Log:
  Avoid use of ${VAR:[1]} for make compatibility

Modified:
  head/textproc/peco/Makefile

Modified: head/textproc/peco/Makefile
==============================================================================
--- head/textproc/peco/Makefile	Tue Nov 15 07:10:32 2016	(r426147)
+++ head/textproc/peco/Makefile	Tue Nov 15 07:22:49 2016	(r426148)
@@ -20,7 +20,7 @@ GO_PKG_GITURL=	https://github.com/${PORT
 GO_PKG_SUBDIR=	cmd/peco
 GO_PKGNAME=	${GO_PKG_GITURL:S|^https://||}/${GO_PKG_SUBDIR}
 PLIST_FILES=	bin/peco
-UPLOAD_FILE=	${_DISTDIR:S|/$||}/${DISTFILES:[1]}
+UPLOAD_FILE=	${_DISTDIR:S|/$||}/${DISTFILES:Mpeco-*.tar.gz}
 
 post-extract:
 	@${MKDIR} ${GO_WRKSRC:H:H:H}



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