summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-06-04 11:10:31 -0700
committerisaacs <i@izs.me>2012-06-04 11:10:31 -0700
commit04e484c4843011640e14f8a9b5409eb8d8dac0fe (patch)
treefe729fcab422aaf97d0aea452bc064365f593fa0
parentf0a561fe67d64415e28c817f336ad71be4d23b81 (diff)
downloadnode-04e484c4843011640e14f8a9b5409eb8d8dac0fe.tar.gz
v8: Don't use 'echo -n' in configure script
-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 bc366d9ad..2d8dc11b7 100644
--- a/deps/v8/build/common.gypi
+++ b/deps/v8/build/common.gypi
@@ -270,7 +270,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)' ],
@@ -280,7 +280,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)' ],