]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: Fix installation of gcore.1 on some platforms
authorMichael Forney <mforney@mforney.org>
Tue, 6 Oct 2020 21:12:57 +0000 (17:12 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Wed, 7 Oct 2020 02:31:13 +0000 (22:31 -0400)
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

gdb/doc/ChangeLog
gdb/doc/Makefile.in

index 49d97dc06e1bc8d13cbaf4d40aef52415d7d4544..2b2b4e546204de0d9b197511be11600b28c94908 100644 (file)
@@ -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.
index 65b5eaa91e7780d8cae7f1350d3e16768db00ee6..3d10dee1bd54fedb62009d18783025a9aafdec5f 100644 (file)
@@ -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@
 
 ###