From a130767e4d966820d96bfa5913e6ad4a50f44a68 Mon Sep 17 00:00:00 2001 From: Karl Skomski Date: Mon, 7 Sep 2015 23:57:18 +0200 Subject: [PATCH] build: fix v8_enable_handle_zapping override Before it was completely ignored by features.gypi --- common.gypi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.gypi b/common.gypi index 7819816bbbd2f5..c57cc5b7b3a59e 100644 --- a/common.gypi +++ b/common.gypi @@ -56,7 +56,7 @@ 'configurations': { 'Debug': { 'variables': { - 'v8_enable_handle_zapping%': 1, + 'v8_enable_handle_zapping': 1, }, 'defines': [ 'DEBUG', '_DEBUG' ], 'cflags': [ '-g', '-O0' ], @@ -83,7 +83,7 @@ }, 'Release': { 'variables': { - 'v8_enable_handle_zapping%': 0, + 'v8_enable_handle_zapping': 0, }, 'cflags': [ '-O3', '-ffunction-sections', '-fdata-sections' ], 'conditions': [