| 1234567891011121314151617 |
- #!/bin/bash
- set -e
- # glibc install script
- # This script installs glibc to the destination directory
- build_dir=$1
- install_dir=$2
- install_type=$3
- # Change to the build directory
- cd ${build_dir}/sources/glibc/build
- # Install glibc
- make install DESTDIR=${install_dir}
- echo "glibc installation completed successfully"
|