Skip to content

Commit

Permalink
Use the module_root_dir variable when linking libffi.
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Mar 5, 2012
1 parent 7909519 commit e18d6fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
'conditions': [
['OS=="win"', {
'libraries': [
'../deps/libffi/.libs/libffi.lib'
'<(module_root_dir)/deps/libffi/.libs/libffi.lib'
],
'dependencies': [
'deps/dlfcn-win32/dlfcn.gyp:dlfcn'
, 'deps/pthreads-win32/pthread.gyp:pthread'
]
}, {
'libraries': [
'../deps/libffi/.libs/libffi.a'
'<(module_root_dir)/deps/libffi/.libs/libffi.a'
],
}],
['OS=="mac"', {
Expand Down

0 comments on commit e18d6fc

Please sign in to comment.