diff options
author | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-23 21:35:18 +0000 |
---|---|---|
committer | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-23 21:35:18 +0000 |
commit | 0813754af2f076d3aabd0f243fa968a81267459e (patch) | |
tree | e32395b1833d09215b5da96bc504ebf6a888898c /build | |
parent | 0cf95dfb52f6492f4601891028a3871f817457c7 (diff) | |
download | chromium_src-0813754af2f076d3aabd0f243fa968a81267459e.zip chromium_src-0813754af2f076d3aabd0f243fa968a81267459e.tar.gz chromium_src-0813754af2f076d3aabd0f243fa968a81267459e.tar.bz2 |
Change default for install 32bit libs on 64bit Linux systems to NO.
Review URL: http://codereview.chromium.org/8004007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102582 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/install-build-deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index 534549a..9f23c8f 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -340,8 +340,8 @@ if [ "$(uname -m)" = "x86_64" ]; then echo "/usr/lib/debug/usr/lib32. If you ever need to uninstall these files," 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 + echo -n "package files (y/N) " + if yes_no 1; then do_inst_lib32=1 fi fi |