commit | 92c098d18e435a7a762409744ebe2dbb3746ed77 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue May 26 20:09:11 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue May 26 20:09:11 2020 +0200 |
tree | f40f79621fd985c2cb126ef75be1399ab7b39d1c | |
parent | 285b189260e2d753454449e429f2caa17e1c39a5 [diff] [blame] |
patch 8.2.0828: Travis: regexp patttern doesn't work everywhere Problem: Travis: regexp patttern doesn't work everywhere. Solution: Use [:blank:] instead of \b. (Ozaki Kiichi, closes #6146)
diff --git a/ci/config.mk.gcc.sed b/ci/config.mk.gcc.sed index 3b11569..f46e488 100644 --- a/ci/config.mk.gcc.sed +++ b/ci/config.mk.gcc.sed
@@ -1 +1 @@ -/^CFLAGS\b/s/$/ -Wno-error=maybe-uninitialized/ +/^CFLAGS[[:blank:]]*=/s/$/ -Wno-error=maybe-uninitialized/