From b45ea40d9306d392bd0486aadb5a5e43acda867c Mon Sep 17 00:00:00 2001 From: "jochen@chromium.org" Date: Tue, 22 Jul 2014 14:53:29 +0000 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 245f08a3d1..9171134abc 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 ; \