Merge pull request #1549 from umireon/osxfuse-paths-with-requirement

osxfuse_requirement: add library and include paths
This commit is contained in:
Mike McQuaid 2016-11-23 11:45:32 +00:00 committed by GitHub
commit 641b0b53f7

View File

@ -14,6 +14,11 @@ class OsxfuseRequirement < Requirement
env do
ENV.append_path "PKG_CONFIG_PATH", HOMEBREW_LIBRARY/"Homebrew/os/mac/pkgconfig/fuse"
unless HOMEBREW_PREFIX.to_s == "/usr/local"
ENV.append_path "HOMEBREW_LIBRARY_PATHS", "/usr/local/lib"
ENV.append_path "HOMEBREW_INCLUDE_PATHS", "/usr/local/include/osxfuse"
end
end
end