From 92c098d18e435a7a762409744ebe2dbb3746ed77 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 26 May 2020 20:09:11 +0200 Subject: 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) --- ci/config.mk.clang.sed | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ci/config.mk.clang.sed') diff --git a/ci/config.mk.clang.sed b/ci/config.mk.clang.sed index 40c6705ac3..da6044d830 100644 --- a/ci/config.mk.clang.sed +++ b/ci/config.mk.clang.sed @@ -1 +1,2 @@ -/^RUBY_CFLAGS\b/s/$/ -Wno-error=unknown-attributes -Wno-error=ignored-attributes/ +/^CFLAGS[[:blank:]]*=/s/$/ -Wno-error=missing-field-initializers/ +/^RUBY_CFLAGS[[:blank:]]*=/s/$/ -Wno-error=unknown-attributes -Wno-error=ignored-attributes/ -- cgit v1.2.3