From f71dc3bd77549744e234243c2a4288ab56724618 Mon Sep 17 00:00:00 2001 From: Lukc Date: Fri, 24 Dec 2010 09:03:56 +0100 Subject: Recette de binutils mise à jour et recette de gcc mise à jour. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- binutils/Pkgfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'binutils') diff --git a/binutils/Pkgfile b/binutils/Pkgfile index 533e6d2..952b5f9 100644 --- a/binutils/Pkgfile +++ b/binutils/Pkgfile @@ -4,6 +4,11 @@ maintainer="Lukc " url="http://sources.redhat.com/binutils/" depends=(zlib) +if [[ -z ${CROSS_TARGET} ]]; then + name=binutils +else + name=binutils-$CROSS_TARGET +fi name=binutils version=2.20.1 release=1 @@ -14,13 +19,13 @@ build () sed -i '/^# RELEASE=y/s/#//' $name-$version/bfd/Makefile.in; mkdir build; cd build; - if [[ $CROSS_ARCH ]]; then - info "Building $name for $CROSS_ARCH." + if [[ -n $CROSS_TRIPLET ]]; then + info "Building $name for $CROSS_TRIPLET." fi ../$name-$version/configure \ ${CHOST:+--build=${CHOST}} \ ${CTARGET:+--host=${CTARGET}} \ - ${CROSS_ARCH:+--target=${CROSS_ARCH}} \ + ${CROSS_TRIPLET:+--target=${CROSS_TRIPLET}} \ --prefix=$prefix \ --mandir=$mandir \ --enable-shared \ @@ -28,6 +33,7 @@ build () make tooldir=$prefix; make check; make tooldir=$prefix DESTDIR=$PKG install; + mkdir -p $PKG$prefix/include; # Pour éviter des problèmes… cp ../$name-$version/include/libiberty.h $PKG$prefix/include; # FIXME if [[ -e $PKG$prefix/lib/libfd.la ]]; then -- cgit v1.2.3-54-g00ecf