diff options
author | Tony Theodore <tonyt@logyst.com> | 2018-02-18 00:13:10 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-02-18 00:13:10 (GMT) |
commit | e81c9a6f77ec9bc361e6489f8588c87aaa034acd (patch) | |
tree | 0266d62c7e0239e85e62a02d7e32e623c992fabc /docs | |
parent | 9f6650d4432a3aee4860eb9092f3aeca5eae9691 (diff) | |
download | mxe-e81c9a6f77ec9bc361e6489f8588c87aaa034acd.zip mxe-e81c9a6f77ec9bc361e6489f8588c87aaa034acd.tar.gz mxe-e81c9a6f77ec9bc361e6489f8588c87aaa034acd.tar.bz2 |
docs: update homebrew instructions
Diffstat (limited to 'docs')
-rw-r--r-- | docs/index.html | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/index.html b/docs/index.html index be2a5b7..56468e0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -835,12 +835,20 @@ USE_OSGPLUGIN(<plugin2>) <!-- http://braumeister.org/ --> <pre>brew install \ autoconf automake coreutils gdk-pixbuf gettext \ - gnu-sed gnu-tar intltool libtool p7zip wget xz</pre> + gnu-sed gnu-tar intltool libtool p7zip scons wget xz</pre> <p> Some formulae are - <a href="https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/FAQ.md#what-does-keg-only-mean"><code>keg-only</code></a> - and will need <code>brew link</code> to be found. + <a href="https://github.com/Homebrew/brew/blob/master/docs/FAQ.md#what-does-keg-only-mean"><code>keg-only</code></a> + and may need <code>brew link</code> to be found. Alternately, paths + for conflicting tools can be added to your session: </p> + <pre>export PATH="/usr/local/opt/gettext/bin:/usr/local/opt/openssl/bin:$PATH" + make ...</pre> + <p> + or <code>make</code> invocation: + </p> + <pre>PATH="/usr/local/opt/gettext/bin:/usr/local/opt/openssl/bin:$PATH" \ + make ...</pre> <h5 id="requirements-macos-general">Genral Notes</h5> <p> |