From ab954e4a53cab8c33728e6708695abc1616c90b1 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Wed, 25 Nov 2020 18:52:49 +0100 Subject: [PATCH] Fix building gdb release from tar file without makeinfo Add GDBvn.texi and version.subst to the release tar file, so the gdb.info does not need makeinfo. This avoids the need for makeinfo to be available. 2020-12-04 Bernd Edlinger * Makefile.in: Delete GDBvn.texi and version.subst only in the maintainer-clean target. --- gdb/doc/ChangeLog | 5 +++++ gdb/doc/Makefile.in | 7 +++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 08fb92bded..5793ab9941 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2020-12-04 Bernd Edlinger + + * Makefile.in: Delete GDBvn.texi and version.subst only in + the maintainer-clean target. + 2020-11-29 Hannes Domani PR python/26974 diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index 3d10dee1bd..74bae01133 100644 --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -231,7 +231,7 @@ Doxyfile-gdbserver: $(srcdir)/Doxyfile-gdbserver.in all-doc: info dvi ps # pdf diststuff: info man - rm -f gdb-cfg.texi GDBvn.texi + rm -f gdb-cfg.texi install-info: $(INFO_DEPS) $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(infodir) @@ -667,10 +667,9 @@ mostlyclean: rm -f $(STABS_TEX_TMPS) rm -f $(ANNOTATE_TEX_TMPS) rm -f sedref.dvi sedref.tex tmp.sed - rm -f version.subst clean: mostlyclean - rm -f gdb-cfg.texi GDBvn.texi + rm -f gdb-cfg.texi distclean: clean rm -f Makefile @@ -680,7 +679,7 @@ distclean: clean # "clean" or "distclean". Use maintainer-clean to remove them. maintainer-clean realclean: distclean - rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf $(MANS) + rm -f GDBvn.texi version.subst *.info* *.dvi *.ps *.html *.pdf $(MANS) install: install-info install-man -- 2.34.1