summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.py b/configure.py
index f32e82e6f2..a3a412e3a7 100755
--- a/configure.py
+++ b/configure.py
@@ -485,8 +485,9 @@ parser.add_option('--without-siphash',
parser.add_option('--code-cache-path',
action='store',
dest='code_cache_path',
- help='Use a file generated by tools/generate_code_cache.js to compile the'
- ' code cache for builtin modules into the binary')
+ help='optparse.SUPPRESS_HELP')
+
+# End dummy list.
parser.add_option('--without-ssl',
action='store_true',
@@ -1050,8 +1051,7 @@ def configure_node(o):
o['variables']['debug_nghttp2'] = 'false'
o['variables']['node_no_browser_globals'] = b(options.no_browser_globals)
- if options.code_cache_path:
- o['variables']['node_code_cache_path'] = options.code_cache_path
+ o['variables']['node_code_cache_path'] = 'yes'
o['variables']['node_shared'] = b(options.shared)
node_module_version = getmoduleversion.get_version()