summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-08-14 23:06:32 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2012-08-14 23:06:32 +0200
commitde32b38992b8adbf7a6b83f580b2cb60fe7b98af (patch)
treea28c8b5245e0a0550e3165d945f3895b0e420d98 /configure
parent22804a9eb88570b80295705da6620b68c3a6c69f (diff)
downloadnode-new-de32b38992b8adbf7a6b83f580b2cb60fe7b98af.tar.gz
addon: remove node-waf, superseded by node-gyp
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 0 insertions, 6 deletions
diff --git a/configure b/configure
index 3b9c9a3821..4535f44e50 100755
--- a/configure
+++ b/configure
@@ -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()