45296320d1
Add bcond to disable building the included npm. Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
58 lines
2.1 KiB
Diff
58 lines
2.1 KiB
Diff
From 2fffabf30b24a7237c17a57704a8e99d425e98f5 Mon Sep 17 00:00:00 2001
|
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
Date: Tue, 19 Mar 2019 23:22:40 -0400
|
|
Subject: [PATCH 2/2] Install both binaries and use libdir.
|
|
|
|
This allows us to build with a shared library for other users while
|
|
still providing the normal executable.
|
|
|
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
|
|
Signed-off-by: rpm-build <rpm-build>
|
|
---
|
|
configure.py | 7 +++++++
|
|
tools/install.py | 2 +-
|
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.py b/configure.py
|
|
index e53a83f332ffd60cf7b6fe7e079470a52a43a8de..efdda6afce33201976e3811907bf4d7e3c2d4302 100755
|
|
--- a/configure.py
|
|
+++ b/configure.py
|
|
@@ -735,6 +735,12 @@ parser.add_argument('--shared',
|
|
help='compile shared library for embedding node in another project. ' +
|
|
'(This mode is not officially supported for regular applications)')
|
|
|
|
+parser.add_argument('--libdir',
|
|
+ action='store',
|
|
+ dest='libdir',
|
|
+ default='lib',
|
|
+ help='a directory to install the shared library into')
|
|
+
|
|
parser.add_argument('--without-v8-platform',
|
|
action='store_true',
|
|
dest='without_v8_platform',
|
|
@@ -1372,6 +1378,7 @@ def configure_node(o):
|
|
o['variables']['node_no_browser_globals'] = b(options.no_browser_globals)
|
|
|
|
o['variables']['node_shared'] = b(options.shared)
|
|
+ o['variables']['libdir'] = options.libdir
|
|
node_module_version = getmoduleversion.get_version()
|
|
|
|
if options.dest_os == 'android':
|
|
diff --git a/tools/install.py b/tools/install.py
|
|
index 5793b581f774db9e2c06495792eb35a3c2f34047..fe16c2bd1f4890919908c7e508451891fce86d0c 100755
|
|
--- a/tools/install.py
|
|
+++ b/tools/install.py
|
|
@@ -176,7 +176,7 @@ def files(action):
|
|
try_symlink(so_name, link_path)
|
|
else:
|
|
output_lib = 'libnode.' + variables.get('shlib_suffix')
|
|
- action([output_prefix + output_lib], 'lib/' + output_lib)
|
|
+ action([output_prefix + output_lib], variables.get('libdir') + '/' + output_lib)
|
|
if 'true' == variables.get('node_use_dtrace'):
|
|
action(['out/Release/node.d'], 'lib/dtrace/node.d')
|
|
|
|
--
|
|
2.36.1
|
|
|