From ae55047221288f26a6e261b079acfa24c9cb5617 Mon Sep 17 00:00:00 2001 From: "torne@chromium.org" Date: Mon, 18 Mar 2013 17:23:18 +0000 Subject: Android WebView: actually fix the sdk jar problem. r188747 didn't actually fix the webview build problem (though it's still a useful refactoring) - the right fix is just to add quotes to the expansion in java.gypi such that the shell doesn't try to expand make variables. BUG= Review URL: https://codereview.chromium.org/12917008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188760 0039d316-1c4b-4281-b951-d872f2087c98 --- build/java.gypi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/java.gypi b/build/java.gypi index b86ebea..2758cd1 100644 --- a/build/java.gypi +++ b/build/java.gypi @@ -182,7 +182,7 @@ '--stamp=<(compile_stamp)', # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja. - '--ignore=>!(echo >(_inputs) | md5sum)', + '--ignore=>!(echo \'>(_inputs)\' | md5sum)', ] }, { @@ -203,7 +203,7 @@ '--excluded-classes=<(excluded_classes)', # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja. - '--ignore=>!(echo >(_inputs) | md5sum)', + '--ignore=>!(echo \'>(_inputs)\' | md5sum)', ] }, ], -- cgit v1.1