diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-15 01:19:56 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-15 01:19:56 +0000 |
commit | 3d1bb0c65441f068cb7e73a06e6ef87b1f05c76b (patch) | |
tree | 2f128866358b7e975bd68c573ced2cbe6c65cb45 /eclass/toolchain-binutils.eclass | |
parent | add m68k to our list (diff) | |
download | gentoo-2-3d1bb0c65441f068cb7e73a06e6ef87b1f05c76b.tar.gz gentoo-2-3d1bb0c65441f068cb7e73a06e6ef87b1f05c76b.tar.bz2 gentoo-2-3d1bb0c65441f068cb7e73a06e6ef87b1f05c76b.zip |
touch die messages and debug output
Diffstat (limited to 'eclass/toolchain-binutils.eclass')
-rw-r--r-- | eclass/toolchain-binutils.eclass | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index d949766a2929..9ddc2a661197 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.21 2005/01/12 01:52:47 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.22 2005/01/15 01:19:56 vapier Exp $ # We install binutils into CTARGET-VERSION specific directories. This lets # us easily merge multiple versions for multiple targets (if we wish) and @@ -90,8 +90,7 @@ toolchain-binutils_src_compile() { || myconf="${myconf} --disable-nls" use multitarget && myconf="${myconf} --enable-targets=all" [[ -n ${CBUILD} ]] && myconf="${myconf} --build=${CBUILD}" - ${S}/configure \ - --prefix=/usr \ + myconf="--prefix=/usr \ --host=${CHOST} \ --target=${CTARGET} \ --datadir=${DATAPATH} \ @@ -103,17 +102,19 @@ toolchain-binutils_src_compile() { --includedir=${INCPATH} \ --enable-shared \ --enable-64-bit-bfd \ - ${myconf} ${EXTRA_ECONF} || die + ${myconf} ${EXTRA_ECONF}" + echo ./configure ${myconf} + ${S}/configure ${myconf} || die "configure failed" - make configure-bfd || die "configure-bfd" - make headers -C bfd || die "headers-bfd" - emake all || die "emake" + make configure-bfd || die "make configure-bfd failed" + make headers -C bfd || die "make headers-bfd failed" + emake all || die "emake failed" # only build info pages if we user wants them, and if # we have makeinfo (may not exist when we bootstrap) if ! has noinfo ${FEATURES} ; then if type -p makeinfo ; then - make info || die "info" + make info || die "make info failed" fi fi # we nuke the manpages when we're left with junk |