diff options
author | knu <knu@FreeBSD.org> | 2016-11-15 15:22:49 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2016-11-15 15:22:49 +0800 |
commit | c39669a82a11acd8b25e58795575f4c31307ae8a (patch) | |
tree | cb54e9ec658751ca444c61411326beacf9b4d4b3 /textproc/peco | |
parent | 0cc78dacf34adce2f375d13c8dfdb572c3e410fa (diff) | |
download | freebsd-ports-gnome-c39669a82a11acd8b25e58795575f4c31307ae8a.tar.gz freebsd-ports-gnome-c39669a82a11acd8b25e58795575f4c31307ae8a.tar.zst freebsd-ports-gnome-c39669a82a11acd8b25e58795575f4c31307ae8a.zip |
Avoid use of ${VAR:[1]} for make compatibility
Diffstat (limited to 'textproc/peco')
-rw-r--r-- | textproc/peco/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/peco/Makefile b/textproc/peco/Makefile index 4e389808174a..6167c899a979 100644 --- a/textproc/peco/Makefile +++ b/textproc/peco/Makefile @@ -20,7 +20,7 @@ GO_PKG_GITURL= https://github.com/${PORTNAME}/${PORTNAME} 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} |