From bb51a8442fb16d71faccac1abfa953d8b1e37cb7 Mon Sep 17 00:00:00 2001 From: William Ting Date: Fri, 11 Jan 2013 01:26:46 -0600 Subject: [PATCH] Add support for Ubuntu named clang packages. Ubuntu's clang packages have additional information appended to the end of the version. - Building Rust v0.5 with clang v3.0-6ubuntu3 fails. - Building Rust v0.5 and incoming with clang v3.1-5ppa (backported from Debian) works. Closes #4441. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index f466f0fa3d7bc..4cbd4eb183279 100755 --- a/configure +++ b/configure @@ -516,7 +516,7 @@ then | cut -d ' ' -f 2) case $CFG_CLANG_VERSION in - (3.0svn | 3.0 | 3.1 | 3.2 | 4.0 | 4.1) + (3.0svn | 3.0 | 3.1* | 3.2* | 4.0* | 4.1*) step_msg "found ok version of CLANG: $CFG_CLANG_VERSION" CFG_C_COMPILER="clang" ;;