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

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

Issue 8883009: Newer versions of Ubuntu rename lib32readline5-dev to lib32readline-gplv2-dev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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
===================================================================
--- build/install-build-deps.sh (revision 113033)
+++ build/install-build-deps.sh (working copy)
@@ -351,8 +351,13 @@
# Standard 32bit compatibility libraries
echo "First, installing the limited existing 32-bit support..."
- cmp_list="ia32-libs lib32asound2-dev lib32readline5-dev lib32stdc++6 lib32z1
+ cmp_list="ia32-libs lib32asound2-dev lib32stdc++6 lib32z1
lib32z1-dev libc6-dev-i386 libc6-i386 g++-multilib"
+ if [ -n "`apt-cache search lib32readline-gplv2-dev 2>/dev/null`" ]; then
+ cmp_list="${cmp_list} lib32readline-gplv2-dev"
+ else
+ cmp_list="${cmp_list} lib32readline5-dev"
+ fi
sudo apt-get install $cmp_list
tmp=/tmp/install-32bit.$$
« 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