Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-10-24 20:21:39 +0400
committerisaacs <i@izs.me>2012-10-24 20:21:44 +0400
commitabf37c1e6655be89afaf5822108ca6dcf0f99096 (patch)
treee0d8a827c8c065ab8c9729fea616b9e24e61197c
parentc3ca783525c3de368572a12e627e56090e49f594 (diff)
V8 build: 'echo -n' considered harmful
-rw-r--r--deps/v8/build/common.gypi4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/build/common.gypi b/deps/v8/build/common.gypi
index f4e63ea5d7e..45b6b482063 100644
--- a/deps/v8/build/common.gypi
+++ b/deps/v8/build/common.gypi
@@ -291,7 +291,7 @@
'target_conditions': [
['_toolset=="host"', {
'variables': {
- 'm32flag': '<!((echo | $(echo ${CXX_host:-$(which g++)}) -m32 -E - > /dev/null 2>&1) && echo -n "-m32" || true)',
+ 'm32flag': '<!((echo | $(echo ${CXX_host:-$(which g++)}) -m32 -E - > /dev/null 2>&1) && echo "-m32" || true)',
},
'cflags': [ '<(m32flag)' ],
'ldflags': [ '<(m32flag)' ],
@@ -301,7 +301,7 @@
}],
['_toolset=="target"', {
'variables': {
- 'm32flag': '<!((echo | $(echo ${CXX_target:-${CXX:-$(which g++)}}) -m32 -E - > /dev/null 2>&1) && echo -n "-m32" || true)',
+ 'm32flag': '<!((echo | $(echo ${CXX_target:-${CXX:-$(which g++)}}) -m32 -E - > /dev/null 2>&1) && echo "-m32" || true)',
},
'cflags': [ '<(m32flag)' ],
'ldflags': [ '<(m32flag)' ],