From fc9b60aee11bc2257413ca56931c8ea08b5fd2df Mon Sep 17 00:00:00 2001 From: Ciaran McCreesh Date: Sun, 19 Sep 2004 23:32:32 +0000 Subject: avoid xargs, bug #64671 --- eclass/vim.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass') 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 @@ -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 -- cgit v1.2.3-65-gdbad