diff options
author | yutak@chromium.org <yutak@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-28 02:44:26 +0000 |
---|---|---|
committer | yutak@chromium.org <yutak@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-28 02:44:26 +0000 |
commit | 628b7ca7aa2d5de5acd93eef56c08d46b85e2527 (patch) | |
tree | 3257631d4fb6f611a534c18e86d5b76a305dd478 | |
parent | 22ab36137239bf3585769182c1cc4bfa87d0bbff (diff) | |
download | chromium_src-628b7ca7aa2d5de5acd93eef56c08d46b85e2527.zip chromium_src-628b7ca7aa2d5de5acd93eef56c08d46b85e2527.tar.gz chromium_src-628b7ca7aa2d5de5acd93eef56c08d46b85e2527.tar.bz2 |
Fix install-build-deps.sh so that it does not interpret a yes-no answer in reverse.
BUG=none
TEST=Run install-build-deps.sh, and answer "Y" to the question "Do you want me to download all packages needed to build new 32 bit package files?". It should proceed to the installation process.
Review URL: http://codereview.chromium.org/549189
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37374 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | build/install-build-deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index f564bbf..ef69a4a 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -311,7 +311,7 @@ if [ "$(uname -m)" = "x86_64" ]; then echo "look for packages named *-ia32.deb." echo "Do you want me to download all packages needed to build new 32bit" echo -n "package files (Y/n) " - if ! yes_no 0; then + if yes_no 0; then do_inst_lib32=1 fi fi |