Skip to content

Commit 0fbe528

Browse files
committed
build: fix dtrace-enabled build on os x
Commit 691d55f introduces a regression on OS X when dtrace is enabled (the default.) This commit rectifies that by removing the erroneous platform check. Fixes the following build error: CXX(target) /Users/bnoordhuis/src/iojs/out/Release/obj.target/node/src/node_dtrace.o ../src/node_dtrace.cc:27:10: fatal error: 'node_provider.h' file not found PR-URL: #150 Reviewed-By: Miroslav Bajtoš <[email protected]>
1 parent 99e7c58 commit 0fbe528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@
466466
'target_name': 'node_dtrace_header',
467467
'type': 'none',
468468
'conditions': [
469-
[ 'node_use_dtrace=="true" and OS!="mac" and OS!="linux"', {
469+
[ 'node_use_dtrace=="true" and OS!="linux"', {
470470
'actions': [
471471
{
472472
'action_name': 'node_dtrace_header',

0 commit comments

Comments
 (0)