From f00c8bcef856d7ff7da40eb67a3c74f13f086256 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 27 Jun 2012 00:33:50 +0200 Subject: [PATCH] build: fix --shared-v8 option --- configure | 1 - node.gyp | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/configure b/configure index 338ec3cd05..8dd68847dd 100755 --- a/configure +++ b/configure @@ -330,7 +330,6 @@ def configure_v8(o): o['libraries'] += ['-lv8'] if options.shared_v8_includes: o['include_dirs'] += [options.shared_v8_includes] - o['variables']['node_shared_v8_includes'] = options.shared_v8_includes def configure_openssl(o): diff --git a/node.gyp b/node.gyp index 0816442e47..933812e3df 100644 --- a/node.gyp +++ b/node.gyp @@ -177,12 +177,7 @@ '<(SHARED_INTERMEDIATE_DIR)/node_etw_provider.rc', ] } ], - [ 'node_shared_v8=="true"', { - 'sources': [ - '<(node_shared_v8_includes)/v8.h', - '<(node_shared_v8_includes)/v8-debug.h', - ], - }, { + [ 'node_shared_v8=="false"', { 'sources': [ 'deps/v8/include/v8.h', 'deps/v8/include/v8-debug.h',