diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2012-08-14 23:06:32 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-08-14 23:06:32 +0200 |
commit | de32b38992b8adbf7a6b83f580b2cb60fe7b98af (patch) | |
tree | a28c8b5245e0a0550e3165d945f3895b0e420d98 /configure | |
parent | 22804a9eb88570b80295705da6620b68c3a6c69f (diff) | |
download | node-new-de32b38992b8adbf7a6b83f580b2cb60fe7b98af.tar.gz |
addon: remove node-waf, superseded by node-gyp
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -29,11 +29,6 @@ parser.add_option("--without-npm", dest="without_npm", help="Don\'t install the bundled npm package manager") -parser.add_option("--without-waf", - action="store_true", - dest="without_waf", - help="Don\'t install node-waf") - parser.add_option("--without-ssl", action="store_true", dest="without_ssl", @@ -321,7 +316,6 @@ def configure_node(o): o['variables']['v8_no_strict_aliasing'] = 1 # work around compiler bugs o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '') o['variables']['node_install_npm'] = b(not options.without_npm) - o['variables']['node_install_waf'] = b(not options.without_waf) o['default_configuration'] = 'Debug' if options.debug else 'Release' host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc() |