diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-09-19 23:32:32 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-09-19 23:32:32 +0000 |
commit | 4b58ed6a9459cefecf5f399b44e086a17b463cc2 (patch) | |
tree | 3f031ebba61802295a656c45d0ac442af95b78e7 /eclass | |
parent | bump to propagate (Manifest recommit) (diff) | |
download | gentoo-2-4b58ed6a9459cefecf5f399b44e086a17b463cc2.tar.gz gentoo-2-4b58ed6a9459cefecf5f399b44e086a17b463cc2.tar.bz2 gentoo-2-4b58ed6a9459cefecf5f399b44e086a17b463cc2.zip |
avoid xargs, bug #64671
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vim.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 4aa896c9e715..ccd7f8f4a441 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.70 2004/09/10 22:40:31 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.71 2004/09/19 23:32:32 ciaranm Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -101,7 +101,7 @@ apply_vim_patches() { einfo "Filtering vim patches..." p=${WORKDIR}/${VIM_ORG_PATCHES%.tar*}.patch ls ${WORKDIR}/vimpatches | sort | \ - xargs -i gzip -dc ${WORKDIR}/vimpatches/{} | awk ' + while read f; do gzip -dc ${WORKDIR}/vimpatches/${f}; done | awk ' /^Subject: Patch/ { if (patchnum) {printf "\n" >"/dev/stderr"} patchnum = $3 |