Skip to content

Instantly share code, notes, and snippets.

@martinbean
Created October 31, 2017 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinbean/f6ddd74d95cbcb2d6bbe088dc348f962 to your computer and use it in GitHub Desktop.
Save martinbean/f6ddd74d95cbcb2d6bbe088dc348f962 to your computer and use it in GitHub Desktop.
Install autoconf on macOS
#!/bin/sh
cd ~/
curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-latest.tar.gz
tar xzf autoconf-latest.tar.gz
cd autoconf-latest
./configure --prefix=/usr/local
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment