This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Minor gdb/Makefile.in cleanups


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=7ff6138b00d245b765266ccaa238e51f906f5356

commit 7ff6138b00d245b765266ccaa238e51f906f5356
Author: Tom Tromey <tom@tromey.com>
Date:   Fri Dec 14 18:58:32 2018 -0700

    Minor gdb/Makefile.in cleanups
    
    This removes an IMO not very useful comment in gdb/Makefile.in about
    "alloca".  It also removes INFOFILES, which I think probably has not
    been useful since whenever the manual was moved into a subdirectory.
    
    gdb/ChangeLog
    2018-12-14  Tom Tromey  <tom@tromey.com>
    
    	* Makefile.in: Remove "alloca" comment.
    	(INFOFILES): Remove.
    	(local-maintainer-clean): Don't use INFOFILES.

Diff:
---
 gdb/ChangeLog   | 6 ++++++
 gdb/Makefile.in | 8 +-------
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 07c436f..f3248cd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2018-12-14  Tom Tromey  <tom@tromey.com>
+
+	* Makefile.in: Remove "alloca" comment.
+	(INFOFILES): Remove.
+	(local-maintainer-clean): Don't use INFOFILES.
+
 2018-12-13  John Baldwin  <jhb@FreeBSD.org>
 
 	* syscalls/update-freebsd.sh: New file.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index b8cb130..a2cf02e 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -579,9 +579,6 @@ INTERNAL_LDFLAGS = \
 	$(CXXFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) \
 	$(LDFLAGS) $(CONFIG_LDFLAGS)
 
-# If your system is missing alloca(), or, more likely, it's there but
-# it doesn't work, then refer to libiberty.
-
 # Libraries and corresponding dependencies for compiling gdb.
 # XM_CLIBS, defined in *config files, have host-dependent libs.
 # LIBIBERTY appears twice on purpose.
@@ -1552,9 +1549,6 @@ HFILES_WITH_SRCDIR = \
 	../bfd/bfd.h \
 	jit-reader.h
 
-# GDB "info" files, which should be included in their entirety
-INFOFILES = gdb.info*
-
 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
 # default their values the way we do for SER_HARDWIRE; in the future
 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
@@ -2004,7 +1998,7 @@ local-maintainer-clean:
 		cp-name-parser.c \
 		ada-lex.c ada-exp.c \
 		d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
-	rm -f TAGS $(INFOFILES)
+	rm -f TAGS
 	rm -f $(YYFILES)
 	rm -f nm.h config.status


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]