summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorCiaran McCreesh <ciaranm@gentoo.org>2004-09-19 23:32:32 +0000
committerCiaran McCreesh <ciaranm@gentoo.org>2004-09-19 23:32:32 +0000
commitfc9b60aee11bc2257413ca56931c8ea08b5fd2df (patch)
treed2d843ad5ebb97f391a4ecb089574fdc049f01d3 /eclass
parentbump to propagate (diff)
downloadhistorical-fc9b60aee11bc2257413ca56931c8ea08b5fd2df.tar.gz
historical-fc9b60aee11bc2257413ca56931c8ea08b5fd2df.tar.bz2
historical-fc9b60aee11bc2257413ca56931c8ea08b5fd2df.zip
avoid xargs, bug #64671
Diffstat (limited to 'eclass')
-rw-r--r--eclass/vim.eclass4
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