diff options
author | Mads Ynddal <mads-git@ynddal.dk> | 2018-07-10 00:25:13 +0200 |
---|---|---|
committer | Mads Ynddal <mads-git@ynddal.dk> | 2018-07-10 00:29:05 +0200 |
commit | 39aabba0a9650e034cb87e7a2b6686882ba1a20b (patch) | |
tree | 75a4ab0822a774dc19cc32d90a1335dea72b8938 /modules/mono/SCsub | |
parent | 149c6709897db45bfc7107fa1c56dbf1630a7857 (diff) |
Added path for Mono installed through Homebrew
On macOS, it is common to install packages like Mono through the third-party
package-manager Homebrew. This commit simply adds an additional path to
where Homebrew installs the Mono framework.
Diffstat (limited to 'modules/mono/SCsub')
-rw-r--r-- | modules/mono/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/SCsub b/modules/mono/SCsub index 89a3caf4e4..c69a3c9ba6 100644 --- a/modules/mono/SCsub +++ b/modules/mono/SCsub @@ -97,7 +97,7 @@ def find_msbuild_unix(filename): hint_dirs = ['/opt/novell/mono/bin'] if sys.platform == 'darwin': - hint_dirs = ['/Library/Frameworks/Mono.framework/Versions/Current/bin'] + hint_dirs + hint_dirs = ['/Library/Frameworks/Mono.framework/Versions/Current/bin', '/usr/local/var/homebrew/linked/mono/bin'] + hint_dirs for hint_dir in hint_dirs: hint_path = os.path.join(hint_dir, filename) |