From 5108a59304468b1e447db45725a3facbecd0aac7 Mon Sep 17 00:00:00 2001 From: "mithro@mithis.com" Date: Fri, 21 Mar 2014 14:15:52 +0000 Subject: [PATCH] Minor fix to regex inside compiler_version.py These dots where meant to be literal dots, not anything. BUG=352046 Review URL: https://codereview.chromium.org/207303004 git-svn-id: http://src.chromium.org/svn/trunk/src/build@258570 4ff67af0-8c30-449e-8e8b-ad334ec8d88c --- compiler_version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler_version.py b/compiler_version.py index b06712d25..22785e5ae 100755 --- a/compiler_version.py +++ b/compiler_version.py @@ -28,7 +28,7 @@ def GetVersion(compiler, tool): # Unmodified: GNU assembler (GNU Binutils) 2.24 # Ubuntu: GNU assembler (GNU Binutils for Ubuntu) 2.22 # Fedora: GNU assembler version 2.23.2 - version_re = re.compile(r"^GNU [^ ]+ .* (\d+).(\d+).*?$", re.M) + version_re = re.compile(r"^GNU [^ ]+ .* (\d+)\.(\d+)\.*?$", re.M) elif tool == "linker": compiler = compiler + " -Xlinker --version" # Using BFD linker @@ -39,7 +39,7 @@ def GetVersion(compiler, tool): # Unmodified: GNU gold (GNU Binutils 2.24) 1.11 # Ubuntu: GNU gold (GNU Binutils for Ubuntu 2.22) 1.11 # Fedora: GNU gold (version 2.23.2) 1.11 - version_re = re.compile(r"^GNU [^ ]+ .* (\d+).(\d+).*?$", re.M) + version_re = re.compile(r"^GNU [^ ]+ .* (\d+)\.(\d+)\.*?$", re.M) else: raise Exception("Unknown tool %s" % tool)