From f70fa3bae61cf203cc9a46fb449af793c08ff086 Mon Sep 17 00:00:00 2001 From: isaacs Date: Thu, 14 Jun 2012 10:11:47 -0700 Subject: [PATCH] v8: Replace 'echo -n' with 'echo' in build commands --- 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)' ],