File nodejs-libpath.patch of Package nodejs16
65
1
Index: node-v16.13.0/tools/install.py
2
===================================================================
3
--- node-v16.13.0.orig/tools/install.py
4
+++ node-v16.13.0/tools/install.py
5
6
import os
7
import shutil
8
import sys
9
+from distutils import sysconfig
10
+import re
11
12
# set at init time
13
node_prefix = '/usr/local' # PREFIX variable from Makefile
14
15
try_unlink(target_path) # prevent ETXTBSY errors
16
return shutil.copy2(source_path, target_path)
17
18
+def libdir():
19
+ libdir_fq = sysconfig.get_config_var("LIBDIR")
20
+ return re.sub("^" + re.escape(node_prefix + "/"), "", libdir_fq)
21
+
22
def try_remove(path, dst):
23
source_path, target_path = mkpaths(path, dst)
24
print('removing %s' % target_path)
25
26
try_remove(path, dst)
27
28
def package_files(action, name, bins):
29
- target_path = 'lib/node_modules/' + name + '/'
30
+ target_path = libdir() + '/node_modules/' + name + '/'
31
32
# don't install npm if the target path is a symlink, it probably means
33
# that a dev version of npm is installed there
34
35
if action == uninstall:
36
action([link_path], 'bin/' + bin_name)
37
elif action == install:
38
- try_symlink('../lib/node_modules/' + name + '/' + bin_target, link_path)
39
+ try_symlink('../' + libdir() + '/node_modules/' + name + '/' + bin_target, link_path)
40
else:
41
assert 0 # unhandled action type
42
43
44
action([output_prefix + output_file], 'lib/' + output_file)
45
46
if 'true' == variables.get('node_use_dtrace'):
47
- action(['out/Release/node.d'], 'lib/dtrace/node.d')
48
+ action(['out/Release/node.d'], libdir() + '/dtrace/node.d')
49
50
# behave similarly for systemtap
51
action(['src/node.stp'], 'share/systemtap/tapset/')
52
Index: node-v16.13.0/lib/internal/modules/cjs/loader.js
53
===================================================================
54
--- node-v16.13.0.orig/lib/internal/modules/cjs/loader.js
55
+++ node-v16.13.0/lib/internal/modules/cjs/loader.js
56
57
path.resolve(process.execPath, '..') :
58
path.resolve(process.execPath, '..', '..');
59
60
- const paths = [path.resolve(prefixDir, 'lib', 'node')];
61
+ const paths = ['/usr/lib/node'];
62
63
if (homeDir) {
64
ArrayPrototypeUnshift(paths, path.resolve(homeDir, '.node_libraries'));
65