From: jochen@chromium.org Date: Tue, 22 Jul 2014 14:53:29 +0000 (+0000) Subject: Avoid bash-ism in Makefile X-Git-Tag: upstream/4.7.83~8115 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b45ea40d9306d392bd0486aadb5a5e43acda867c;p=platform%2Fupstream%2Fv8.git Avoid bash-ism in Makefile BUG=none TBR=machenbach@chromium.org LOG=n Review URL: https://codereview.chromium.org/412503002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22528 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/Makefile b/Makefile index 245f08a..9171134 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 ; \