- #!/bin/bash
- set -e
- # M4 install script
- # Installs the compiled M4 package to the destination directory
- build_dir=$1
- install_dir=$2
- install_type=$3
- cd sources/m4
- echo "Installing M4 to ${install_dir}..."
- make DESTDIR=${install_dir} install
- echo "M4 installation complete."
|