install.sh 276 B

12345678910111213141516
  1. #!/bin/bash
  2. set -e
  3. # M4 install script
  4. # Installs the compiled M4 package to the destination directory
  5. build_dir=$1
  6. install_dir=$2
  7. install_type=$3
  8. cd sources/m4
  9. echo "Installing M4 to ${install_dir}..."
  10. make DESTDIR=${install_dir} install
  11. echo "M4 installation complete."