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

Unified Diff: third_party/lcov/bin/updateversion.pl

Issue 23189008: Upgrades lcov to 1.10, removes lcov-1.9 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-adds UNKNOWN suppression Created 7 years, 4 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 | « third_party/lcov/bin/lcov ('k') | third_party/lcov/example/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/lcov/bin/updateversion.pl
diff --git a/third_party/lcov/bin/updateversion.pl b/third_party/lcov/bin/updateversion.pl
index 49f639a2ead244cb312c76791b31c8450ee1ce2f..55f2bc1dd9a0dead1d8d3ff7216ac8827ec96758 100755
--- a/third_party/lcov/bin/updateversion.pl
+++ b/third_party/lcov/bin/updateversion.pl
@@ -93,7 +93,7 @@ sub update_bin_tool($)
open(OUT, ">$filename.new") ||
die("Error: cannot create $filename.new\n");
while (<IN>) {
- s/(our\s+\$lcov_version\s*=\s*\").*(\".*)$/$1LCOV version $version$2/g;
+ s/(our\s+\$lcov_version\s*=\s*["']).*(["'].*)$/$1LCOV version $version$2/g;
print(OUT $_);
}
close(OUT);
« no previous file with comments | « third_party/lcov/bin/lcov ('k') | third_party/lcov/example/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698