summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-06-04 11:10:31 -0700
committerisaacs <i@izs.me>2012-06-07 17:54:22 -0700
commit0435f9b28c8eefc6a3ccbe6f06d731dc6b3e7796 (patch)
tree5614fa0d2e9e18ba9dd85bb1df48e22e160f7a95
parentbd33fea732fa74d23fc31855631eba14a03a0c49 (diff)
downloadnode-0435f9b28c8eefc6a3ccbe6f06d731dc6b3e7796.tar.gz
v8: Don't use 'echo -n' in configure script
-rw-r--r--deps/v8/build/common.gypi2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/build/common.gypi b/deps/v8/build/common.gypi
index d5f679fdd..ff3679431 100644
--- a/deps/v8/build/common.gypi
+++ b/deps/v8/build/common.gypi
@@ -290,7 +290,7 @@
[ 'v8_target_arch!="x64"', {
# Pass -m32 to the compiler iff it understands the flag.
'variables': {
- 'm32flag': '<!((echo | $(echo ${CXX:-$(which g++)}) -m32 -E - > /dev/null 2>&1) && echo -n "-m32" || true)',
+ 'm32flag': '<!((echo | $(echo ${CXX:-$(which g++)}) -m32 -E - > /dev/null 2>&1) && echo "-m32" || true)',
},
'cflags': [ '<(m32flag)' ],
'ldflags': [ '<(m32flag)' ],