diff options
author | Todd Heim <heim@gentoo.org> | 2003-05-08 05:49:15 +0000 |
---|---|---|
committer | Todd Heim <heim@gentoo.org> | 2003-05-08 05:49:15 +0000 |
commit | fc60448d5da0d235a0a2831bcc2e596389b7851d (patch) | |
tree | 5259a0c226e0c71f4ba4ca365400e75f9a083ef0 /eclass | |
parent | fixed bugs #20603 & #15622 (diff) | |
download | gentoo-2-fc60448d5da0d235a0a2831bcc2e596389b7851d.tar.gz gentoo-2-fc60448d5da0d235a0a2831bcc2e596389b7851d.tar.bz2 gentoo-2-fc60448d5da0d235a0a2831bcc2e596389b7851d.zip |
fix for #15622
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/php.eclass b/eclass/php.eclass index b90f7b314c2f..050141b8bf93 100644 --- a/eclass/php.eclass +++ b/eclass/php.eclass @@ -1,7 +1,7 @@ # Copyright 2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author: Robin H. Johnson <robbat2@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.9 2003/04/25 14:42:00 coredumb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.10 2003/05/08 05:49:15 heim Exp $ # This EBUILD is totally masked presently. Use it at your own risk. I know it # is severely broken, but I needed to get a copy into CVS to pass around and @@ -262,8 +262,8 @@ php_src_install() { #revert Pear patch rm ${D}/usr/lib/php/PEAR/Registry.php - mv ${S}/pear/PEAR/Registry.old ${D}/usr/lib/php/PEAR/Registry.php - + #mv ${S}/pear/PEAR/Registry.old ${D}/usr/lib/php/PEAR/Registry.php + cat ${S}/pear/PEAR/Registry.old | sed -e 's:${PORTAGE_TMPDIR}/${PF}::' > ${D}/usr/lib/php/PEAR/Registry.php } |