install.sh 317 B

1234567891011121314151617
  1. #!/bin/bash
  2. set -e
  3. # glibc install script
  4. # This script installs glibc to the destination directory
  5. build_dir=$1
  6. install_dir=$2
  7. install_type=$3
  8. # Change to the build directory
  9. cd ${build_dir}/sources/glibc/build
  10. # Install glibc
  11. make install DESTDIR=${install_dir}
  12. echo "glibc installation completed successfully"