8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b166837 commit 78dc928Copy full SHA for 78dc928
tools/install.py
@@ -124,7 +124,10 @@ def files(action):
124
if sys.platform != 'darwin':
125
output_prefix += 'lib.target/'
126
127
- action([output_prefix + output_file], 'bin/' + output_file)
+ if 'false' == variables.get('node_shared'):
128
+ action([output_prefix + output_file], 'bin/' + output_file)
129
+ else:
130
+ action([output_prefix + output_file], 'lib/' + output_file)
131
132
if 'true' == variables.get('node_use_dtrace'):
133
action(['out/Release/node.d'], 'lib/dtrace/node.d')
0 commit comments