build: add --without-corepack
PR-URL: https://github.com/nodejs/node/pull/41060 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
147d23b211
commit
6ef6bdf1fd
@ -641,6 +641,12 @@ parser.add_argument('--without-npm',
|
|||||||
default=None,
|
default=None,
|
||||||
help='do not install the bundled npm (package manager)')
|
help='do not install the bundled npm (package manager)')
|
||||||
|
|
||||||
|
parser.add_argument('--without-corepack',
|
||||||
|
action='store_true',
|
||||||
|
dest='without_corepack',
|
||||||
|
default=None,
|
||||||
|
help='do not install the bundled Corepack')
|
||||||
|
|
||||||
# Dummy option for backwards compatibility
|
# Dummy option for backwards compatibility
|
||||||
parser.add_argument('--without-report',
|
parser.add_argument('--without-report',
|
||||||
action='store_true',
|
action='store_true',
|
||||||
@ -1154,6 +1160,7 @@ def configure_node(o):
|
|||||||
o['variables']['OS'] = 'android'
|
o['variables']['OS'] = 'android'
|
||||||
o['variables']['node_prefix'] = options.prefix
|
o['variables']['node_prefix'] = options.prefix
|
||||||
o['variables']['node_install_npm'] = b(not options.without_npm)
|
o['variables']['node_install_npm'] = b(not options.without_npm)
|
||||||
|
o['variables']['node_install_corepack'] = b(not options.without_corepack)
|
||||||
o['variables']['debug_node'] = b(options.debug_node)
|
o['variables']['debug_node'] = b(options.debug_node)
|
||||||
o['default_configuration'] = 'Debug' if options.debug else 'Release'
|
o['default_configuration'] = 'Debug' if options.debug else 'Release'
|
||||||
o['variables']['error_on_warn'] = b(options.error_on_warn)
|
o['variables']['error_on_warn'] = b(options.error_on_warn)
|
||||||
|
@ -163,6 +163,8 @@ def files(action):
|
|||||||
|
|
||||||
if 'true' == variables.get('node_install_npm'):
|
if 'true' == variables.get('node_install_npm'):
|
||||||
npm_files(action)
|
npm_files(action)
|
||||||
|
|
||||||
|
if 'true' == variables.get('node_install_corepack'):
|
||||||
corepack_files(action)
|
corepack_files(action)
|
||||||
|
|
||||||
headers(action)
|
headers(action)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user