diff options
author | isaacs <i@izs.me> | 2012-05-16 10:15:25 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-05-16 14:22:57 -0700 |
commit | 3b95d88bf2dc1ac713cad527ff7780af2253d4d5 (patch) | |
tree | 9aa232d9bc8a9e1c07015a9082bb108d9c31b98b /deps | |
parent | 2cca7488bf5f783c0b7a2c1258baa583a771164a (diff) | |
download | node-new-3b95d88bf2dc1ac713cad527ff7780af2253d4d5.tar.gz |
v8: s/echo -n/echo/. Not all sh's are bash.
Diffstat (limited to 'deps')
-rw-r--r-- | deps/v8/build/common.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/build/common.gypi b/deps/v8/build/common.gypi index 4fb06a69f2..327562d898 100644 --- a/deps/v8/build/common.gypi +++ b/deps/v8/build/common.gypi @@ -293,7 +293,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)' ], |