minix/external/gpl3/binutils/fetch.sh
Thomas Veerman 18a5822eff Partially import gcc and binutils
They are used as build tools for cross compilation. This import does
not include the full distribution. Rather, it sports a shell script
that will download and patch the distribution when compiled from
/usr/src/tools (yet to be committed). This part of the source tree is
only necessary for cross compilation. It's not used or compiled for
native builds.
2012-06-18 10:54:16 +00:00

21 lines
410 B
Bash

#!/bin/sh
# Make sure we're in our directory (i.e., where this shell script is)
echo $0
cd `dirname $0`
# Fetch sources if not available
if [ ! -d dist ];
then
if [ ! -f binutils-2.17a.tar.bz2 ];
then
wget http://ftp.gnu.org/gnu/binutils/binutils-2.17a.tar.bz2
fi
tar -xf binutils-2.17a.tar.bz2 && \
mv binutils-2.17 dist && \
cd dist && \
cat ../../../../tools/binutils/patches/* | patch -p0
fi