diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-01 03:06:47 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-01 03:06:47 +0000 |
commit | c67b1b2246467ded6f63cb1213ec5200ed29d75a (patch) | |
tree | cf7b4b0f9466a848d2eb7d71cca4f47bea35b746 /eclass | |
parent | Stable on sparc wrt security bug #83297. (diff) | |
download | historical-c67b1b2246467ded6f63cb1213ec5200ed29d75a.tar.gz historical-c67b1b2246467ded6f63cb1213ec5200ed29d75a.tar.bz2 historical-c67b1b2246467ded6f63cb1213ec5200ed29d75a.zip |
uclibc fixes
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index ec81a6cc484f..08d4d6d80ad2 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.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/toolchain.eclass,v 1.113 2005/03/01 02:32:11 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.114 2005/03/01 03:06:47 vapier Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" LICENSE="GPL-2 LGPL-2.1" @@ -779,6 +779,7 @@ gcc_src_unpack() { cd ${S:=$(gcc_get_s_dir)} [[ -n ${PATCH_VER} ]] && epatch ${WORKDIR}/patch + [[ -n ${UCLIBC_VER} ]] && epatch ${WORKDIR}/uclibc if ! want_boundschecking ; then [[ -n ${PP_VER} ]] && do_gcc_SSP_patches @@ -1460,7 +1461,7 @@ gcc_quick_unpack() { unpack ${PN}-${PATCH_GCC_VER}-patches-${PATCH_VER}.tar.bz2 [[ -n ${UCLIBC_VER} ]] && \ - unpack ${PN}-${PATCH_GCC_VER}-patches-${UCLIBC_VER}.tar.bz2 + unpack ${PN}-${PATCH_GCC_VER}-uclibc-patches-${UCLIBC_VER}.tar.bz2 if [[ -n ${PP_VER} ]] ; then # The gcc 3.4 propolice versions are meant to be unpacked to ${S} |