diff options
author | 2005-04-11 06:03:18 +0000 | |
---|---|---|
committer | 2005-04-11 06:03:18 +0000 | |
commit | 0d5623a8baf9609691dc75443b6f34f4d8db7542 (patch) | |
tree | 8e9994cac9b4e2c570bd3f459d0d42c2bf50f349 /eclass/toolchain-binutils.eclass | |
parent | Package-Manager: portage-2.0.51.19 (diff) | |
download | historical-0d5623a8baf9609691dc75443b6f34f4d8db7542.tar.gz historical-0d5623a8baf9609691dc75443b6f34f4d8db7542.tar.bz2 historical-0d5623a8baf9609691dc75443b6f34f4d8db7542.zip |
make sure the skip patch dir is auto-created for us
Diffstat (limited to 'eclass/toolchain-binutils.eclass')
-rw-r--r-- | eclass/toolchain-binutils.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index c2812d8d57fd..c69819cd3a70 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.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-binutils.eclass,v 1.32 2005/04/11 06:00:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.33 2005/04/11 06:03:18 vapier Exp $ # We install binutils into CTARGET-VERSION specific directories. This lets # us easily merge multiple versions for multiple targets (if we wish) and @@ -53,6 +53,7 @@ is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; } toolchain-binutils_src_unpack() { unpack ${A} mkdir -p "${MY_BUILDDIR}" + [[ -d ${WORKDIR}/patch ]] && mkdir "${WORKDIR}"/patch/skip } apply_binutils_updates() { |