diff options
author | torne@chromium.org <torne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-18 17:23:18 +0000 |
---|---|---|
committer | torne@chromium.org <torne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-18 17:23:18 +0000 |
commit | ae55047221288f26a6e261b079acfa24c9cb5617 (patch) | |
tree | 95a221b4d28cd4c2dd98198b0d165c7d4d44c861 | |
parent | 153761e1cdafc83c6fd28be133b7f1ceddfb53d6 (diff) | |
download | chromium_src-ae55047221288f26a6e261b079acfa24c9cb5617.zip chromium_src-ae55047221288f26a6e261b079acfa24c9cb5617.tar.gz chromium_src-ae55047221288f26a6e261b079acfa24c9cb5617.tar.bz2 |
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
-rw-r--r-- | build/java.gypi | 4 |
1 files 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)', ] }, ], |