diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-04-11 06:03:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-04-11 06:03:18 +0000 |
commit | ff76b52c49df214c5300632bde8de47029fcee70 (patch) | |
tree | 0df8fc6e79ecb1be1294d0b98f4c36a5cb7f7969 /eclass/toolchain-binutils.eclass | |
parent | (Portage version: 2.0.51.19) (Manifest recommit) (diff) | |
download | gentoo-2-ff76b52c49df214c5300632bde8de47029fcee70.tar.gz gentoo-2-ff76b52c49df214c5300632bde8de47029fcee70.tar.bz2 gentoo-2-ff76b52c49df214c5300632bde8de47029fcee70.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() { |