diff --git a/.prev-version b/.prev-version index 0b2eb36f..c1e43e6d 100644 --- a/.prev-version +++ b/.prev-version @@ -1 +1 @@ -3.7.2 +3.7.3 diff --git a/NEWS b/NEWS index 70d480f6..fd2af67d 100644 --- a/NEWS +++ b/NEWS @@ -50,6 +50,16 @@ GNU Bison NEWS ↳ • ↳ ε +* Noteworthy changes in release 3.7.3 (2020-10-13) [stable] + +** Bug fixes + + Fix concurrent build issues. + + The bison executable is no longer linked uselessly against libreadline. + + Fix incorrect use of yytname in glr.cc. + * Noteworthy changes in release 3.7.2 (2020-09-05) [stable] This release of Bison fixes all known bugs reported for Bison in MITRE's diff --git a/README b/README index 794d49e4..94f8a4f8 100644 --- a/README +++ b/README @@ -27,7 +27,7 @@ Bison from the git repo. Roughly, run: then proceed with the usual `configure && make` steps. ## Build from tarball -See the [INSTALL file](INSTALL] for generic compilation and installation +See the [INSTALL file](INSTALL) for generic compilation and installation instructions. Bison requires GNU m4 1.4.6 or later. See diff --git a/examples/c/lexcalc/local.mk b/examples/c/lexcalc/local.mk index b73887e2..636275c8 100644 --- a/examples/c/lexcalc/local.mk +++ b/examples/c/lexcalc/local.mk @@ -31,6 +31,13 @@ endif FLEX_WORKS %D%/parse.c: $(dependencies) +# Tell Make scan.o depends on parse.h, except that Make sees only +# parse.c, not parse.h. We can't use BUILT_SOURCES to this end, since +# we use the built bison. +%D%/lexcalc$(DASH)scan.o: %D%/parse.c +# Likewise, but for Automake before 1.16. +%D%/examples_c_lexcalc_lexcalc$(DASH)scan.o: %D%/parse.c + EXTRA_DIST += %D%/lexcalc.test dist_lexcalc_DATA = %D%/parse.y %D%/scan.l %D%/Makefile %D%/README.md CLEANFILES += %D%/parse.[ch] %D%/scan.c %D%/parse.output diff --git a/gnulib b/gnulib index 6742a5d3..160d5e7d 160000 --- a/gnulib +++ b/gnulib @@ -1 +1 @@ -Subproject commit 6742a5d3394cd39f18006b89f6c8cd43078af0e1 +Subproject commit 160d5e7d9a64a29a52d4821fd0ef2136d7e2102a diff --git a/src/local.mk b/src/local.mk index 76808906..32d09d10 100644 --- a/src/local.mk +++ b/src/local.mk @@ -143,7 +143,6 @@ src_bison_LDADD = \ $(LIB_SETLOCALE_NULL) \ $(LIBICONV) \ $(LIBINTL) \ - $(LIBREADLINE) \ $(LIBTEXTSTYLE)