From 04e484c4843011640e14f8a9b5409eb8d8dac0fe Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 4 Jun 2012 11:10:31 -0700 Subject: [PATCH] v8: Don't use 'echo -n' in configure script --- deps/v8/build/common.gypi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/v8/build/common.gypi b/deps/v8/build/common.gypi index bc366d9ad1..2d8dc11b70 100644 --- a/deps/v8/build/common.gypi +++ b/deps/v8/build/common.gypi @@ -270,7 +270,7 @@ 'target_conditions': [ ['_toolset=="host"', { 'variables': { - 'm32flag': ' /dev/null 2>&1) && echo -n "-m32" || true)', + 'm32flag': ' /dev/null 2>&1) && echo "-m32" || true)', }, 'cflags': [ '<(m32flag)' ], 'ldflags': [ '<(m32flag)' ], @@ -280,7 +280,7 @@ }], ['_toolset=="target"', { 'variables': { - 'm32flag': ' /dev/null 2>&1) && echo -n "-m32" || true)', + 'm32flag': ' /dev/null 2>&1) && echo "-m32" || true)', }, 'cflags': [ '<(m32flag)' ], 'ldflags': [ '<(m32flag)' ],