summaryrefslogtreecommitdiffstats
path: root/ci/config.mk.sed
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-26 20:09:11 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-26 20:09:11 +0200
commit92c098d18e435a7a762409744ebe2dbb3746ed77 (patch)
treef40f79621fd985c2cb126ef75be1399ab7b39d1c /ci/config.mk.sed
parent285b189260e2d753454449e429f2caa17e1c39a5 (diff)
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.sed')
-rw-r--r--ci/config.mk.sed4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/config.mk.sed b/ci/config.mk.sed
index 31682787eb..cd2cd9c452 100644
--- a/ci/config.mk.sed
+++ b/ci/config.mk.sed
@@ -1,2 +1,2 @@
-/^CFLAGS\b/s/$/ -Wall -Wextra -Wshadow -Werror/
-/^PERL_CFLAGS\b/s/$/ -Wno-error=unused-function/
+/^CFLAGS[[:blank:]]*=/s/$/ -Wall -Wextra -Wshadow -Werror/
+/^PERL_CFLAGS[[:blank:]]*=/s/$/ -Wno-error=unused-function/