Skip to content

Commit

Permalink
build: add --without-corepack
Browse files Browse the repository at this point in the history
PR-URL: #41060
Backport-PR-URL: #40479
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>
  • Loading branch information
jonahsnider authored and richardlau committed Jan 25, 2022
1 parent cd20ecc commit 0231ffa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions configure.py
Expand Up @@ -567,6 +567,11 @@
dest='without_npm',
help='do not install the bundled npm (package manager)')

parser.add_option('--without-corepack',
action='store_true',
dest='without_corepack',
help='do not install the bundled Corepack')

# Dummy option for backwards compatibility
parser.add_option('--without-report',
action='store_true',
Expand Down Expand Up @@ -1066,6 +1071,7 @@ def configure_node(o):
o['variables']['OS'] = 'android'
o['variables']['node_prefix'] = options.prefix
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['default_configuration'] = 'Debug' if options.debug else 'Release'
o['variables']['error_on_warn'] = b(options.error_on_warn)
Expand Down
2 changes: 2 additions & 0 deletions tools/install.py
Expand Up @@ -163,6 +163,8 @@ def files(action):

if 'true' == variables.get('node_install_npm'):
npm_files(action)

if 'true' == variables.get('node_install_corepack'):
corepack_files(action)

headers(action)
Expand Down

0 comments on commit 0231ffa

Please sign in to comment.