Economy of Effort

Twitter LinkedIn GitHub Mail RSS

Os X Homebrew Gnutls Build Failure Fix

When trying to update my Homebrew install, I was getting this error when building gnutls:

Error: Failed executing: make install
These existing issues may help you:

The Github page linked does have the answer, but I missed it for a while because I didn’t scroll down to the money post. The answer is to paste the following into your terminal:

for dep in $(brew deps gnutls); do brew remove –force $dep; done
brew install gnutls

Thank you, jabley.

Comments