summaryrefslogtreecommitdiff
path: root/node/patches/003-path.patch
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-09-09 15:01:26 +0200
committerKarel Kočí <cynerd@email.cz>2018-09-09 15:01:26 +0200
commit1b9a2d1d1a02759ebfc41fba2cc656dfe1071767 (patch)
tree37add7db566bd601ea8d68b85e5eaca2ce8dd312 /node/patches/003-path.patch
parent28093a126b913ea9629ac0a341c71be7c5e06763 (diff)
downloadopenwrt-personal-pkgs-1b9a2d1d1a02759ebfc41fba2cc656dfe1071767.tar.gz
openwrt-personal-pkgs-1b9a2d1d1a02759ebfc41fba2cc656dfe1071767.tar.bz2
openwrt-personal-pkgs-1b9a2d1d1a02759ebfc41fba2cc656dfe1071767.zip
Drop node
I am not planning to using it anyway
Diffstat (limited to 'node/patches/003-path.patch')
-rw-r--r--node/patches/003-path.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/node/patches/003-path.patch b/node/patches/003-path.patch
deleted file mode 100644
index 01a71c6..0000000
--- a/node/patches/003-path.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/lib/module.js
-+++ b/lib/module.js
-@@ -453,7 +453,8 @@ Module._initPaths = function() {
- homeDir = process.env.HOME;
- }
-
-- var paths = [path.resolve(process.execPath, '..', '..', 'lib', 'node')];
-+ var paths = [path.resolve(process.execPath, '..', '..', 'lib', 'node'),
-+ path.resolve(process.execPath, '..', '..', 'lib', 'node_modules')];
-
- if (homeDir) {
- paths.unshift(path.resolve(homeDir, '.node_libraries'));