diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-26 20:09:11 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-26 20:09:11 +0200 |
commit | 92c098d18e435a7a762409744ebe2dbb3746ed77 (patch) | |
tree | f40f79621fd985c2cb126ef75be1399ab7b39d1c /ci/config.mk.gcc.sed | |
parent | 285b189260e2d753454449e429f2caa17e1c39a5 (diff) | |
download | vim-git-92c098d18e435a7a762409744ebe2dbb3746ed77.tar.gz |
patch 8.2.0828: Travis: regexp patttern doesn't work everywherev8.2.0828
Problem: Travis: regexp patttern doesn't work everywhere.
Solution: Use [:blank:] instead of \b. (Ozaki Kiichi, closes #6146)
Diffstat (limited to 'ci/config.mk.gcc.sed')
-rw-r--r-- | ci/config.mk.gcc.sed | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/config.mk.gcc.sed b/ci/config.mk.gcc.sed index 3b11569eb..f46e48848 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/ |