summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2020-10-13 06:56:01 +0200
committerAkim Demaille <akim.demaille@gmail.com>2020-10-13 06:57:33 +0200
commitbc5e4541dab3c7be22574d398a295dd94632614f (patch)
tree9090257342826967e6c0f10d3f279a1ddf4cf930
parent567d1eaa1955c0043830d67e2f432f3942dc4a92 (diff)
downloadbison-bc5e4541dab3c7be22574d398a295dd94632614f.tar.gz
build: don't link bison against libreadline
Reported by Paul Smith <psmith@gnu.org>. https://lists.gnu.org/r/bug-bison/2020-10/msg00001.html * src/local.mk (src_bison_LDADD): here.
-rw-r--r--NEWS7
-rw-r--r--src/local.mk1
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index a10af6f7..7af5b8dc 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,13 @@ GNU Bison NEWS
* Noteworthy changes in release ?.? (????-??-??) [?]
+** 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]
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)