From 449ffecbb0608d1f222184d9f241697aede18c80 Mon Sep 17 00:00:00 2001 From: Trevor Norris Date: Wed, 2 Jul 2014 13:32:11 -0700 Subject: [PATCH] configure: fix v8 overriding commands on build V8 seems to ignore the default value for want_separate_host_toolset and would override it at build time. Instead always explicitly set the value. Fixes #7833 --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 90caa7c831..ecd375a144 100755 --- a/configure +++ b/configure @@ -473,6 +473,8 @@ def configure_node(o): if target_arch != host_arch and not options.without_snapshot: o['variables']['want_separate_host_toolset'] = 1 + else: + o['variables']['want_separate_host_toolset'] = 0 if target_arch == 'arm': configure_arm(o)