summaryrefslogtreecommitdiffstats
path: root/build/install-build-deps.sh
diff options
context:
space:
mode:
authorsamahto <samahto@cisco.com>2014-12-02 02:46:31 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-02 10:46:53 +0000
commit6be55c61cc912e3b6ef911323e958f77e7d2f03f (patch)
treea1e40c8b215ce77ac87969a1a045a9327e7ef61e /build/install-build-deps.sh
parenta434235942384cd436a2e6733e928829211baaac (diff)
downloadchromium_src-6be55c61cc912e3b6ef911323e958f77e7d2f03f.zip
chromium_src-6be55c61cc912e3b6ef911323e958f77e7d2f03f.tar.gz
chromium_src-6be55c61cc912e3b6ef911323e958f77e7d2f03f.tar.bz2
Add support for ubuntu 14.10(utopic) to install-build-deps.sh
Added utopic in list of supported version. BUG=437593 TEST=run install-build-deps.sh on ubuntu14.10 or use utopic chroot environment. NOTRY=true Review URL: https://codereview.chromium.org/769653002 Cr-Commit-Position: refs/heads/master@{#306365}
Diffstat (limited to 'build/install-build-deps.sh')
-rwxr-xr-xbuild/install-build-deps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh
index a9ec4ec..d1d844a 100755
--- a/build/install-build-deps.sh
+++ b/build/install-build-deps.sh
@@ -73,10 +73,10 @@ if ! which lsb_release > /dev/null; then
fi
lsb_release=$(lsb_release --codename --short)
-ubuntu_codenames="(precise|quantal|raring|saucy|trusty)"
+ubuntu_codenames="(precise|quantal|raring|saucy|trusty|utopic)"
if [ 0 -eq "${do_unsupported-0}" ] && [ 0 -eq "${do_quick_check-0}" ] ; then
if [[ ! $lsb_release =~ $ubuntu_codenames ]]; then
- echo "ERROR: Only Ubuntu 12.04 (precise) through 14.04 (trusty) are"\
+ echo "ERROR: Only Ubuntu 12.04 (precise) through 14.10 (utopic) are"\
"currently supported" >&2
exit 1
fi