diff options
author | Jim Ramsay <lack@gentoo.org> | 2011-08-20 15:46:21 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2011-08-20 15:46:21 +0000 |
commit | b0c623b7ce86367b7bd30d8c6be3e708ac53dcde (patch) | |
tree | 8b101e41bd5dbf87c96ab47959b1c5d778100487 /eclass | |
parent | Stable for HPPA (bug #371857). (diff) | |
download | gentoo-2-b0c623b7ce86367b7bd30d8c6be3e708ac53dcde.tar.gz gentoo-2-b0c623b7ce86367b7bd30d8c6be3e708ac53dcde.tar.bz2 gentoo-2-b0c623b7ce86367b7bd30d8c6be3e708ac53dcde.zip |
Followup to bug #378107: fix for EPREFIX.
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 4e8df6e6f814..f4256a2f86f0 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.199 2011/08/18 02:48:43 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.200 2011/08/20 15:46:21 lack Exp $ # Authors: # Jim Ramsay <lack@gentoo.org> @@ -359,7 +359,7 @@ END # Bug #378107 - Build properly with >=perl-core/ExtUtils-ParseXS-3.20.0 if version_is_at_least 7.3; then - sed -i 's:\$(PERLLIB)/ExtUtils/xsubpp:/usr/bin/xsubpp:' \ + sed -i "s:\\\$(PERLLIB)/ExtUtils/xsubpp:${EPREFIX}/usr/bin/xsubpp:" \ "${S}"/src/Makefile || die 'sed for ExtUtils-ParseXS failed' fi } |