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

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

Issue 2888011: Allow maverick with install-build-deps.sh. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: long lines Created 10 years, 5 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 7e781cbcff1c27f5573969bac5783cc5cae444df..41289cf387e27f33408fb655eee68b7a6fca16d3 100755
--- a/build/install-build-deps.sh
+++ b/build/install-build-deps.sh
@@ -78,8 +78,11 @@ install_gold() {
fi
}
-if ! egrep -q 'Ubuntu (8\.04|8\.10|9\.04|9\.10|10\.04|karmic|lucid)' /etc/issue; then
- echo "Only Ubuntu 8.04 (hardy) through 10.04 (lucid) are currently supported" >&2
+if ! egrep -q \
+ 'Ubuntu (8\.04|8\.10|9\.04|9\.10|10\.04|10\.10|karmic|lucid|maverick)' \
+ /etc/issue; then
+ echo "Only Ubuntu 8.04 (hardy) through 10.10 (maverick) are currently" \
+ "supported" >&2
exit 1
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