Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Oct 2017 21:03:38 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r453251 - head/editors/vim
Message-ID:  <201710312103.v9VL3cKX014337@repo.freebsd.org>

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



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