a515d1
From 9872b897d6a9a39e3392c39bca70cfd9dd084558 Mon Sep 17 00:00:00 2001
a515d1
From: rpm-build <rpm-build>
a515d1
Date: Mon, 26 Sep 2022 16:02:39 +0200
a515d1
Subject: [PATCH] install: keep installing dtrace and systemtap files
a515d1
a515d1
Partly reverts commit e27e709d3ca93b3e7036ddc4f4d28dfde228bfb6.
a515d1
a515d1
Signed-off-by: rpm-build <rpm-build>
a515d1
---
a515d1
 tools/install.py | 5 +++++
a515d1
 1 file changed, 5 insertions(+)
a515d1
a515d1
diff --git a/tools/install.py b/tools/install.py
a515d1
index 4b01d67..dc16797 100755
a515d1
--- a/tools/install.py
a515d1
+++ b/tools/install.py
a515d1
@@ -178,6 +178,11 @@ def files(action):
a515d1
       output_lib = 'libnode.' + variables.get('shlib_suffix')
a515d1
       action([output_prefix + output_lib], variables.get('libdir') + '/' + output_lib)
a515d1
 
a515d1
+  if 'true' == variables.get('node_use_dtrace'):
a515d1
+    action(['out/Release/node.d'], variables.get('libdir') + '/dtrace/node.d')
a515d1
+
a515d1
+  action(['src/node.stp'], 'share/systemtap/tapset/')
a515d1
+
a515d1
   action(['deps/v8/tools/gdbinit'], 'share/doc/node/')
a515d1
   action(['deps/v8/tools/lldb_commands.py'], 'share/doc/node/')
a515d1
 
a515d1
-- 
a515d1
2.37.3
a515d1