diff options
Diffstat (limited to 'dev-lang/prc-tools')
-rw-r--r-- | dev-lang/prc-tools/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/prc-tools/prc-tools-2.3-r1.ebuild | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/dev-lang/prc-tools/ChangeLog b/dev-lang/prc-tools/ChangeLog index 79d61c83c86b..14ae77954abf 100644 --- a/dev-lang/prc-tools/ChangeLog +++ b/dev-lang/prc-tools/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/prc-tools -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/prc-tools/ChangeLog,v 1.9 2005/01/28 23:55:01 plasmaroo Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/prc-tools/ChangeLog,v 1.10 2006/01/01 22:01:59 plasmaroo Exp $ + + 01 Jan 2006; <plasmaroo@gentoo.org> prc-tools-2.3-r1.ebuild: + Path fix; bug #100879. 28 Jan 2005; <plasmaroo@gentoo.org> prc-tools-2.3-r1.ebuild: Add texinfo-4.8 $DEPEND; 4.7 fails when generating the documentation. diff --git a/dev-lang/prc-tools/prc-tools-2.3-r1.ebuild b/dev-lang/prc-tools/prc-tools-2.3-r1.ebuild index 89c855524612..bbcd3f4a5f1d 100644 --- a/dev-lang/prc-tools/prc-tools-2.3-r1.ebuild +++ b/dev-lang/prc-tools/prc-tools-2.3-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/prc-tools/prc-tools-2.3-r1.ebuild,v 1.4 2005/01/28 23:55:01 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/prc-tools/prc-tools-2.3-r1.ebuild,v 1.5 2006/01/01 22:01:59 plasmaroo Exp $ inherit flag-o-matic eutils @@ -86,6 +86,9 @@ src_config() { # palmdev-prefix also has to be real; otherwise 'palmdev-prep' # defaults to virtual ${D}/.. + + # Make sure the newly built compiler is found; #100879. + export PATH="$PATH:${D}/usr/bin" } src_compile() { @@ -95,6 +98,7 @@ src_compile() { src_install() { cd ../build + export PATH="$PATH:${D}/usr/bin" einstall || die } |