diff options
author | obrien <obrien@FreeBSD.org> | 2007-01-09 03:12:58 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2007-01-09 03:12:58 +0800 |
commit | 66c2cf3345cf478be2855d51b2a62ff9bba1a995 (patch) | |
tree | d82e893110c37c7ff79d64a4ac67941a15ba751b /editors/vim | |
parent | fe7756cfbe0649e4e69a27f62cd29629fa29a216 (diff) | |
download | freebsd-ports-gnome-66c2cf3345cf478be2855d51b2a62ff9bba1a995.tar.gz freebsd-ports-gnome-66c2cf3345cf478be2855d51b2a62ff9bba1a995.tar.zst freebsd-ports-gnome-66c2cf3345cf478be2855d51b2a62ff9bba1a995.zip |
Fix bug rev 1.292 introduced to Gvim - Escape the pipe in the menu files.
PR: 107524
Submitted by: Ricardo Nabinger Sanchez<rnsanchez@wait4.org>
Patch submitted by: James Seward <james@jamesoff.net>
Diffstat (limited to 'editors/vim')
-rw-r--r-- | editors/vim/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index a93c37a3a900..ad5303328cbf 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -10,7 +10,7 @@ PORTNAME?= vim PATCHLEVEL= 178 PORTVERSION= 7.0.${PATCHLEVEL} RELEASE= vim-${PORTVERSION:C/\.[0-9a-z]*$//} -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= editors MASTER_SITES= ${MASTER_SITE_VIM} DISTFILES= ${RELEASE}${EXTRACT_SUFX} @@ -165,7 +165,7 @@ post-extract: .if defined(WITH_EXUBERANT_CTAGS) CTAGS_CMD= exctags -R . .else -CTAGS_CMD= ${FIND} . -type f|${XARGS} ctags +CTAGS_CMD= ${FIND} . -type f \\|${XARGS} ctags .endif post-patch: |