minix/external/gpl3/binutils/fetch.sh

21 lines
410 B
Bash
Raw Normal View History

#!/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