We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f55ee6e commit 6975c49Copy full SHA for 6975c49
tools/install.py
@@ -133,7 +133,10 @@ def files(action):
133
if sys.platform != 'darwin':
134
output_prefix += 'lib.target/'
135
136
- action([output_prefix + output_file], 'bin/' + output_file)
+ if 'false' == variables.get('node_shared'):
137
+ action([output_prefix + output_file], 'bin/' + output_file)
138
+ else:
139
+ action([output_prefix + output_file], 'lib/' + output_file)
140
141
if 'true' == variables.get('node_use_dtrace'):
142
action(['out/Release/node.d'], 'lib/dtrace/node.d')
0 commit comments