diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-24 03:56:44 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-24 03:56:44 +0000 |
commit | 8a12e2bc1f606a0b8436d7498ec49751baff178f (patch) | |
tree | 95c93a1908e650d95bca1f4b678441208670de1a /build | |
parent | 9ea7f625d9560ac02722545c8125ff3513e669b6 (diff) | |
download | chromium_src-8a12e2bc1f606a0b8436d7498ec49751baff178f.zip chromium_src-8a12e2bc1f606a0b8436d7498ec49751baff178f.tar.gz chromium_src-8a12e2bc1f606a0b8436d7498ec49751baff178f.tar.bz2 |
Add support for alpha and beta versions of karmic/lucid in install-build-deps.sh
For some reason, alpha and beta releases of Ubuntu seem to use code names
instead of numbers in /etc/issue.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/1154004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42428 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-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 b85eddd..a470ede 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -116,7 +116,7 @@ __EOF__ fi } -if ! egrep -q 'Ubuntu (8\.04|8\.10|9\.04|9\.10)' /etc/issue; then +if ! egrep -q 'Ubuntu (8\.04|8\.10|9\.04|9\.10|karmic|lucid)' /etc/issue; then echo "Only Ubuntu 8.04, 8.10, 9.04, and 9.10 are currently supported" >&2 exit 1 fi |