Skip to content

Commit 03dcbe3

Browse files
sgallagherBethGriggs
authored andcommitted
build: fix bad upstream merge
The upstream merge of e27e709d3c accidentally removed code related to systemtap and dtrace. Signed-off-by: Stephen Gallagher <[email protected]> PR-URL: #44642 Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent 4552231 commit 03dcbe3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tools/install.py

+5
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,11 @@ def files(action):
177177
else:
178178
output_lib = 'libnode.' + variables.get('shlib_suffix')
179179
action([output_prefix + output_lib], variables.get('libdir') + '/' + output_lib)
180+
if 'true' == variables.get('node_use_dtrace'):
181+
action(['out/Release/node.d'], 'lib/dtrace/node.d')
182+
183+
# behave similarly for systemtap
184+
action(['src/node.stp'], 'share/systemtap/tapset/')
180185

181186
action(['deps/v8/tools/gdbinit'], 'share/doc/node/')
182187
action(['deps/v8/tools/lldb_commands.py'], 'share/doc/node/')

0 commit comments

Comments
 (0)