diff options
author | Sebastian Bergmann <sebastian@gentoo.org> | 2005-09-13 16:07:50 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@gentoo.org> | 2005-09-13 16:07:50 +0000 |
commit | 6f94f2f89796ada92dd6e040a8718bba5930f5cc (patch) | |
tree | a9d6ae11433136bf05beb80cfc060ba5fa345366 /eclass | |
parent | Mark 0.9.11 stable on alpha (diff) | |
download | historical-6f94f2f89796ada92dd6e040a8718bba5930f5cc.tar.gz historical-6f94f2f89796ada92dd6e040a8718bba5930f5cc.tar.bz2 historical-6f94f2f89796ada92dd6e040a8718bba5930f5cc.zip |
Fix bug #105756.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php-pear-r1.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/php-pear-r1.eclass b/eclass/php-pear-r1.eclass index 31fcb771b1b8..33f403723623 100644 --- a/eclass/php-pear-r1.eclass +++ b/eclass/php-pear-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-r1.eclass,v 1.4 2005/09/11 16:39:10 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-pear-r1.eclass,v 1.5 2005/09/13 16:07:50 sebastian Exp $ # # Author: Tal Peer <coredumb@gentoo.org> # @@ -45,4 +45,6 @@ php-pear-r1_src_install() { cd ${S} mv ${WORKDIR}/package.xml ${S} pear install --nodeps --installroot=${D} ${S}/package.xml || die "Unable to install PEAR package" + rm ${D}/usr/share/php/.filemap + rm ${D}/usr/share/php/.lock } |