summaryrefslogtreecommitdiffstats
path: root/binutils
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-24 09:03:56 +0100
committerLukc <lukc@upyum.com>2010-12-24 09:03:56 +0100
commitf71dc3bd77549744e234243c2a4288ab56724618 (patch)
tree6deea0a2e5b91b90ab1fa1bf58f2b859e2f4e70f /binutils
parent66f63302924f103d0b332f0678e717185ed6cec5 (diff)
downloaddevel-f71dc3bd77549744e234243c2a4288ab56724618.tar.gz
devel-f71dc3bd77549744e234243c2a4288ab56724618.tar.bz2
devel-f71dc3bd77549744e234243c2a4288ab56724618.tar.xz
devel-f71dc3bd77549744e234243c2a4288ab56724618.zip
Recette de binutils mise à jour et recette de gcc mise à jour.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/Pkgfile12
1 files changed, 9 insertions, 3 deletions
diff --git a/binutils/Pkgfile b/binutils/Pkgfile
index 533e6d2..952b5f9 100644
--- a/binutils/Pkgfile
+++ b/binutils/Pkgfile
@@ -4,6 +4,11 @@ maintainer="Lukc <lukc AT upyum DOT com>"
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