Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2334)

Unified Diff: build/install-build-deps.sh

Issue 549189: Fix install-build-deps.sh so that it does not interpret a yes-no answer in reverse. (Closed)
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/install-build-deps.sh
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh
index f564bbfb040ea3bfcb33eb9e3ee28ac0490e263a..ef69a4a1cafe3b0e0d6f68dda968b1a76d7b7125 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698