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