diff options
author | Stephen Bennett <spb@gentoo.org> | 2004-12-18 22:13:13 +0000 |
---|---|---|
committer | Stephen Bennett <spb@gentoo.org> | 2004-12-18 22:13:13 +0000 |
commit | 5314347b033b8f4517ca4428f7b6810015dcde54 (patch) | |
tree | 817d6710f10c96d2f8a2703e95fd9a53e4d0d374 /eclass/vim.eclass | |
parent | Stable on ppc64; bug #74473 (diff) | |
download | historical-5314347b033b8f4517ca4428f7b6810015dcde54.tar.gz historical-5314347b033b8f4517ca4428f7b6810015dcde54.tar.bz2 historical-5314347b033b8f4517ca4428f7b6810015dcde54.zip |
Use gawk where freebsd's awk doesn't work
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index d143efa9d182..9f33c1fbe2eb 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.83 2004/12/11 23:44:58 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.84 2004/12/18 22:13:13 spb Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -124,10 +124,13 @@ apply_vim_patches() { # Scan the patches, applying them only to files that either # already exist or that will be created by the patch + # + # Changed awk to gawk in the below; BSD's awk chokes on it + # --spb, 2004/12/18 einfo "Filtering vim patches ..." p=${WORKDIR}/${VIM_ORG_PATCHES%.tar*}.patch ls ${WORKDIR}/vimpatches | sort | \ - while read f; do gzip -dc ${WORKDIR}/vimpatches/${f}; done | awk ' + while read f; do gzip -dc ${WORKDIR}/vimpatches/${f}; done | gawk ' /^Subject: Patch/ { if (patchnum) {printf "\n" >"/dev/stderr"} patchnum = $3 |