Fix building gdb release from tar file without makeinfo
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Wed, 25 Nov 2020 17:52:49 +0000 (18:52 +0100)
committerBernd Edlinger <bernd.edlinger@hotmail.de>
Fri, 4 Dec 2020 15:34:55 +0000 (16:34 +0100)
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  <bernd.edlinger@hotmail.de>

* Makefile.in: Delete GDBvn.texi and version.subst only in
the maintainer-clean target.

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

index 08fb92bded8df72aba6950097fce41457aa35dcd..5793ab9941b83c85809b01b6fb292f28558a0763 100644 (file)
@@ -1,3 +1,8 @@
+2020-12-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
+
+       * Makefile.in: Delete GDBvn.texi and version.subst only in
+       the maintainer-clean target.
+
 2020-11-29  Hannes Domani  <ssbssa@yahoo.de>
 
        PR python/26974
index 3d10dee1bd54fedb62009d18783025a9aafdec5f..74bae01133db93147831829fa280dc7d7119b5a5 100644 (file)
@@ -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
 
This page took 0.074887 seconds and 4 git commands to generate.