mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
gdb: Fix installation of gcore.1 on some platforms
gcore is installed on NetBSD, FreeBSD, Solaris (HAVE_NATIVE_GCORE_HOST=1) and Linux (HAVE_NATIVE_GCORE_TARGET=1). However, even though gcore.1 is installed conditional on those variables, HAVE_NATIVE_GCORE_HOST was missing from gdb/doc/Makefile.in, so manual installation was skipped on NetBSD, FreeBSD, and Solaris. gdb/doc/ChangeLog: 2020-10-06 Michael Forney <mforney@mforney.org> * Makefile.in (HAVE_NATIVE_GCORE_HOST): Add for gcore.1 install condition. Change-Id: I17c3ce2ecdfb806ece17f05ba78356b25ffa865e
This commit is contained in:
parent
8ab0be1717
commit
4b136f6f9a
@ -1,3 +1,8 @@
|
||||
2020-10-06 Michael Forney <mforney@mforney.org>
|
||||
|
||||
* Makefile.in (HAVE_NATIVE_GCORE_HOST): Add for gcore.1
|
||||
install condition.
|
||||
|
||||
2020-10-04 Simon Marchi <simon.marchi@polymtl.ca>
|
||||
|
||||
* gdb.texinfo (Debugging Output): Add set/show debug event-loop.
|
||||
|
@ -180,6 +180,7 @@ MAN5S = gdbinit.5
|
||||
MANS = $(MAN1S) $(MAN5S)
|
||||
|
||||
HAVE_NATIVE_GCORE_TARGET = @HAVE_NATIVE_GCORE_TARGET@
|
||||
HAVE_NATIVE_GCORE_HOST = @HAVE_NATIVE_GCORE_HOST@
|
||||
|
||||
###
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user