summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2022-07-31 12:40:32 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2022-07-31 13:28:52 -0700
commit6d58f297cc45c053f706da991e5b58c5505af7c4 (patch)
tree784b5cf42ac14ad41d22c4cb2d7a6ed5ce861dbe /.travis.yml
parentd95df5028d37b6d347e3afcdb349c182b0a6ce4c (diff)
downloadbison-6d58f297cc45c053f706da991e5b58c5505af7c4.tar.gz
maint: don’t use \] in BREs and EREs
* .travis.yml (jobs): * doc/local.mk ($(top_srcdir)/%D%/bison.help): * tests/regression.at (Web2c Actions, Useless Tokens): * tests/scanner.at (Token numbers: $1): Use plain ], not \], in a POSIX regular expression, as POSIX says the interpretation of \] is undefined.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index a801ea2e..4e6e116f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -45,7 +45,7 @@ jobs:
- git submodule update --init --recursive
# As of 2021-08, we don't have Autoconf 2.71 on Ubuntu.
- - sed -i 's/AC_PREREQ(\[2\.71\])/AC_PREREQ([2.69])/g' configure.ac
+ - sed -i 's/AC_PREREQ(\[2\.71])/AC_PREREQ([2.69])/g' configure.ac
- ./bootstrap
- ./configure --enable-gcc-warnings || { cat config.log && false; }
- make -j2