From 47486de80aa7b7aeeaef3bd6c9226f2cf7cf2440 Mon Sep 17 00:00:00 2001 From: LeonMrBonnie Date: Mon, 15 May 2023 21:53:55 +0200 Subject: [PATCH] Remove NodeJS version suffix from Linux binary --- .github/workflows/build-deploy.yml | 2 +- configure.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index ae4c5027d4..f35149af28 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -88,7 +88,7 @@ jobs: cd alt-build && bash alt-release.sh cd .. mkdir dist - cp ./out/Release/libnodev2.so.108 dist/libnodev2.so.108 + cp ./out/Release/libnodev2.so dist/libnodev2.so - uses: actions/upload-artifact@v3 with: diff --git a/configure.py b/configure.py index 81d54a14b7..7c8b42468b 100755 --- a/configure.py +++ b/configure.py @@ -1443,7 +1443,7 @@ def configure_node(o): elif sys.platform.startswith('zos'): shlib_suffix = '%s.x' else: - shlib_suffix = 'so.%s' + shlib_suffix = 'so' if '%s' in shlib_suffix: shlib_suffix %= node_module_version