Skip to content

Commit ea9e6ca

Browse files
committed
Fix installed deps-opengl rpath
1 parent ef9960d commit ea9e6ca

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { install } from '@node-3d/addon-tools';
22

33
const prefix = 'https://github.com/node-3d/webgl/releases/download';
4-
const tag = '6.0.0';
4+
const tag = '6.0.1';
55

66
await install(`${prefix}/${tag}`);

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"author": "Luis Blanco <luisblanco1337@gmail.com>",
33
"name": "@node-3d/webgl",
4-
"version": "6.0.0",
4+
"version": "6.0.1",
55
"description": "WebGL for Node.js",
66
"license": "MIT",
77
"main": "dist/index.js",

src/binding.gyp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"-Wl,-rpath,'$$ORIGIN'",
2222
"-Wl,-rpath,'$$ORIGIN/../node_modules/@node-3d/deps-opengl/<(bin)'",
2323
"-Wl,-rpath,'$$ORIGIN/../../@node-3d/deps-opengl/<(bin)'",
24+
"-Wl,-rpath,'$$ORIGIN/../../deps-opengl/<(bin)'",
2425
'<(gl_bin)/libGLEW.so.2.2',
2526
'<(gl_bin)/libGL.so',
2627
'<(gl_bin)/libXrandr.so',
@@ -32,6 +33,7 @@
3233
'-Wl,-rpath,@loader_path',
3334
'-Wl,-rpath,@loader_path/../node_modules/@node-3d/deps-opengl/<(bin)',
3435
'-Wl,-rpath,@loader_path/../../@node-3d/deps-opengl/<(bin)',
36+
'-Wl,-rpath,@loader_path/../../deps-opengl/<(bin)',
3537
'<(gl_bin)/glew.dylib',
3638
],
3739
}],

0 commit comments

Comments
 (0)