Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install autoconf 2.69 by default #427

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions bin/setup
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,11 @@ asdf plugin update erlang
asdf plugin update elixir

echo "asdf install erlang..."
# On Mojave (and possibly other Mac versions), you might encounter:
# configure: error: cannot find required auxiliary files: install-sh config.guess config.sub
# Installing autoconf 2.69 solves it.
version=$(sw_vers -productVersion | cut -f1,2 -d'.')
# if Mojave
if [[ $version == '10.14.6' ]]
then
brew install autoconf@2.69 && \
brew link --overwrite autoconf@2.69 && \
autoconf -V
fi

brew install autoconf@2.69 && \
brew link --overwrite autoconf@2.69 && \
autoconf -V

asdf install erlang 23.1.1
asdf local erlang 23.1.1

Expand Down