Reviewers: Michael Achenbach,

Description:
Avoid bash-ism in Makefile

BUG=none
[email protected]
LOG=n

Please review this at https://codereview.chromium.org/412503002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+1, -1 lines):
  M Makefile


Index: Makefile
diff --git a/Makefile b/Makefile
index 245f08a3d16f5d8bf8b6923e32ba7cca97ba4f42..9171134abc2e0adf3271245b2b1271c8c0956ca2 100644
--- a/Makefile
+++ b/Makefile
@@ -473,7 +473,7 @@ gtags.clean:
 builddeps:
        svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
            --revision 1831
-       if svn info third_party/icu |& grep -q icu46 ; then \
+       if svn info third_party/icu 2>&1 | grep -q icu46 ; then \
          svn switch --force \
              https://src.chromium.org/chrome/trunk/deps/third_party/icu52 \
              third_party/icu --revision 277999 ; \


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to