| 12345678910111213141516171819 |
- #!/bin/bash
- set -e
- # Binutils FITP install script
- # Installs binutils to the destination directory
- build_dir=$1
- install_dir=$2
- install_type=$3
- echo "Installing binutils FITP..."
- # Change to build directory
- cd sources/binutils/build
- # Install the package
- make install DESTDIR=${install_dir}
- echo "Installation complete."
|