From b7a21b7517c57db5f0e564b38617420013ff350d Mon Sep 17 00:00:00 2001 From: Zongmin Lei Date: Mon, 26 Oct 2015 22:38:51 +0800 Subject: [PATCH] Fix homebrew building issues --- binding.gyp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/binding.gyp b/binding.gyp index 68438ce..989742e 100644 --- a/binding.gyp +++ b/binding.gyp @@ -37,10 +37,12 @@ 'conditions': [ [ 'OS!="win"', { 'include_dirs': [ - '/opt/local/include' + '/opt/local/include', + '/usr/local/include' ], 'library_dirs': [ - '/opt/local/lib' + '/opt/local/lib', + '/usr/local/lib' ] }], ],