diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-03-31 15:59:13 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-03-31 15:59:13 +0000 |
commit | 7abfeadd75255a007cb4ff4dd602febc858f9fa6 (patch) | |
tree | fd60433d3f8e6bcef21894d9a3022b404f545034 /eclass/vim.eclass | |
parent | errno fix (diff) | |
download | gentoo-2-7abfeadd75255a007cb4ff4dd602febc858f9fa6.tar.gz gentoo-2-7abfeadd75255a007cb4ff4dd602febc858f9fa6.tar.bz2 gentoo-2-7abfeadd75255a007cb4ff4dd602febc858f9fa6.zip |
fix bug 18514 by setting TMPDIR for patch
Diffstat (limited to 'eclass/vim.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 ec6b9c3a4618..f0217496492a 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.19 2003/03/30 20:03:03 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.20 2003/03/31 15:59:13 agriffis Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -172,7 +172,7 @@ apply_vim_patches() { # For reasons yet unknown, epatch fails to apply this cleanly ebegin "Applying filtered vim patches..." - patch -f -s -p0 < ${p} + TMPDIR=${T} patch -f -s -p0 < ${p} eend 0 } |