svn commit: r453251 - head/editors/vim
Adam Weinberger
adamw at FreeBSD.org
Tue Oct 31 21:03:39 UTC 2017
Author: adamw
Date: Tue Oct 31 21:03:37 2017
New Revision: 453251
URL: https://svnweb.freebsd.org/changeset/ports/453251
Log:
Fix the ctags syntax. It does need the escaped pipe.
Reported by: olgeni
Modified:
head/editors/vim/Makefile
Modified: head/editors/vim/Makefile
==============================================================================
--- head/editors/vim/Makefile Tue Oct 31 20:30:15 2017 (r453250)
+++ head/editors/vim/Makefile Tue Oct 31 21:03:37 2017 (r453251)
@@ -4,7 +4,7 @@
PORTNAME= vim
PORTVERSION= 8.0.1231
DISTVERSIONPREFIX= v
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= editors
MAINTAINER= adamw at FreeBSD.org
@@ -177,7 +177,7 @@ post-install:
# OPTIONS
post-patch-EXUBERANT_CTAGS-off:
- @${FIND} ${WRKSRC}/runtime/ -name 'menu*.vim' -print0 | ${XARGS} -0 ${REINPLACE_CMD} -Ee 's!ctags -R ?\.!${FIND} . -type f | ${XARGS} ctags!g'
+ @${FIND} ${WRKSRC}/runtime/ -name 'menu*.vim' -print0 | ${XARGS} -0 ${REINPLACE_CMD} -Ee 's!ctags -R ?\.!${FIND} . -type f \\| ${XARGS} ctags!g'
post-patch-EXUBERANT_CTAGS-on:
@${FIND} ${WRKSRC}/runtime/ -name 'menu*.vim' -print0 | ${XARGS} -0 ${REINPLACE_CMD} -e 's|ctags -R|exctags -R|g'
More information about the svn-ports-head
mailing list